0%

记录SSH 非对称加密身份验证,是目前使用较多的主机间连接方式

Read more »

Description

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.

You may assume the two numbers do not contain any leading zero, except the number 0 itself.

Example:

1
2
3
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
Explanation: 342 + 465 = 807.
Read more »

Description

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

Example:

1
2
3
4
Given nums = [2, 7, 11, 15], target = 9,

Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
Read more »

及于商,而命行也及图形界面择其一,于事物,命行也得之之难,因荐图形界面道,鼠标点击而已

Read more »

Bug情况

描述:缺氧游戏显示运行中,却迟迟不见游戏打开,点击停止没有反应,只能通过结束进程来关闭
系统:Windows10
平台:Steam

解决方案:

找到缺氧文件目录,删除UnityCrashHandler64.exe即可

日晚,于定新规,言程序员端,荐于版本控制 git 。昨夜,再聊,小子不忘一干二净,遂教小子手把手 git 具,意在尊工作效率,并进,俱长,广话题

Read more »

#7 Python代码调试

Python已经学了这么久了,你现在已经长大了,该学会自己调试代码了!相信大家在编写程序过程中会遇到大量的错误信息,我也不例外的啦~遇到这些问题该怎么解决呢?使用最多的方法就是使用print打印中间变量了哇,关于这种方法怎么说呢~low!!!这一节将记录Python中一项很重要的技能:Debug(代码调试),Here We Go!

Read more »