![[LeetCode每日一题]99. Recover Binary Search Tree](https://weiguangli.com/wp-content/themes/frontopen2_v1.5.04.15/timthumb.php?src=https://weiguangli.com/wp-content/uploads/2020/02/LeetCode_Sharing.png&h=140&w=205&zc=1)
![[LeetCode每日一题]99. Recover Binary Search Tree](https://weiguangli.com/wp-content/themes/frontopen2_v1.5.04.15/timthumb.php?src=https://weiguangli.com/wp-content/uploads/2020/02/LeetCode_Sharing.png&h=140&w=205&zc=1)
2019
07-31
07-31
http协议下域名访问网站失败的解决方法
安装firewallD更换SSH端口后,发现使用http协议+www域名访问网站失败,而不带www的域名和ip:80直接访问都可以访问。
开始时认为是DNS解析的问题,一顿操作之后,发现没什么用。。。。
后来顿悟,遂去开放防火墙80端口,执行以下命令:
firewall-cmd --permanent --zone=public --add-port=80/tcp
如果你的443端.... Read More >
2019
07-30
07-30
CentOS7安装firewalld并替换SSH默认的22端口
SSH登录验证成功后,您将看到以下消息:
Last login: Mon Jul 29 23:08:52 2019 from xxx.xxx.xxx.xxx.
Last failed login: Sun Jul 21 22:02:31 2019 from xxx.xxx.xxx.xxx on ssh:notty
There were 15922 failed login attempts s.... Read More >
2019
07-13
07-13
LeetCode-1 Two Sum 解析
题目:
给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。
示例:
[go]给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1.... Read More >
2019
03-14
03-14
Go内建容器之映射(map)

2019
03-09
03-09
Go内建容器之切片(slice)

2019
03-09
03-09
Go内建容器之数组

2019
02-24
02-24
Go语法之for循环

2019
02-23
02-23
Go语法之switch

2019
02-23
02-23
Go语法之if条件语句
