给一个整数数组,找到两个数使得他们的和等于一个给定的数 target。
你需要实现的函数twoSum需要返回这两个数的下标, 并且第一个下标小于第二个下标。注意这里下标的范围是 0 到 n-1。
当我们希望定义一个不包括重复整数的集时,如果使用如下代码
Set
编译器会报错
重装系统前备份是个好习惯⊙﹏⊙
更新前备份
备份好 hexo 目录下的_config.yml,theme/,source/,scaffolds/,package.json,.gitignore,node_modules(当然如果你硬盘空间够大,备份整个 hexo 文件夹也可以)。然后把 hexo 目录里面的东西全部删掉。
备份用户目录下的文件:开始,你的 windows 用户名,打开你的用户文件夹后备份.ssh文件夹和.gitconfig、_netrc以及_viminfo这三个文件。
Shadowsocks无GUI客户端教程:Linux安装配置Shadowsocks客户端及开机自动启动
Shadowsocks-Qt5客户端教程:Shadowsocks-Qt5 For Centos 7
Shadowsocks服务端教程:搬瓦工Shadowsocks安装及配置多用户(服务端)
(https://blog.huihut.com/2017/08/25/LinuxInstallConfigShadowsocksClient/)
NULL means that memory has not been allocated to the pointer (string). So there is no representation of the string in memory.
On the other hand, a string can be initialised as “” (empty string). This does mean that memory is allocated, and it is present in memory, it’s just empty. That means its length is 0.
Majority Element
描述
给定一个整型数组,找出主元素,它在数组中的出现次数严格大于数组元素个数的二分之一。
样例
给出数组[1,1,1,1,2,2,2],返回 1
挑战
要求时间复杂度为O(n),空间复杂度为O(1)