始、整理

​ 闲来无事,想捣鼓一下unity,打开界面一脸懵逼。明明大学玩过一段时间的,这知识咋就不进脑子呢,又得重新学习

阅读全文 »

题目:和相同的二元子数组

​ 给你一个二元数组 nums ,和一个整数 goal ,请你统计并返回有多少个和为 goal非空 子数组。

子数组 是数组的一段连续部分。

示例 1:

1
2
3
4
输入:nums = [1,0,1,0,1], goal = 2
输出:4
解释:
有 4 个满足题目要求的子数组:[1,0,1]、[1,0,1,0]、[0,1,0,1]、[1,0,1]
阅读全文 »

一、修改host文件

​ 在C:\Windows\System32\drivers\etc中打开host文件(可以用记事本打开),在该文件中添加如下内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# GitHub Start 
140.82.114.4 github.com
140.82.114.4 gist.github.com
185.199.108.153 assets-cdn.github.com
151.101.64.133 raw.githubusercontent.com
151.101.108.133 gist.githubusercontent.com
151.101.108.133 cloud.githubusercontent.com
151.101.108.133 camo.githubusercontent.com
151.101.108.133 avatars0.githubusercontent.com
151.101.108.133 avatars1.githubusercontent.com
151.101.108.133 avatars2.githubusercontent.com
151.101.108.133 avatars3.githubusercontent.com
151.101.108.133 avatars4.githubusercontent.com
151.101.108.133 avatars5.githubusercontent.com
151.101.108.133 avatars6.githubusercontent.com
151.101.108.133 avatars7.githubusercontent.com
151.101.108.133 avatars8.githubusercontent.com
# GitHub End

保存文件,再次打开github速度飞快

阅读全文 »

始、报错汇总

1.输入git g -d后报错:fatal: unable to access ‘h…://github.com/….github.io.git/

解决方法1:重置一下git的代理:

1
git config --global --unset git.proxy

解决方法2:删掉node_modules文件夹

解决方法3:git ggit d 分两步输入

解决方法4:挂梯子

阅读全文 »