我是这样学习Python列表的

2019-06-02
阅读 4 分钟
1.5k
不同于 C++ 和 Java,在 Python 中,没有在标准库中内置数组类型,而是通常利用列表来表示数组,同时它也比数组的使用要灵活得太多。

算法笔试利器--对数器的使用

2018-11-05
阅读 3 分钟
10.9k
对数器是通过用大量测试数据来验证算法是否正确的一种方式。在算法笔试的时候,我们经常只能确定我们写出的算法在逻辑上是大致正确的,但是谁也不能一次性保证绝对的正确。特别是对于一些复杂的题目,例如贪心算法,我们往往无法在有限时间内用数学公式来推导证明我们程序的正确性。而且在线的OJ一般只会给出有数的几个...

LeetCode65. Valid Number -- 判断合法数字

2018-06-29
阅读 2 分钟
2.9k
Some examples:"0" => true" 0.1 " => true"abc" => false"1 a" => false"2e10" => true

LeetCode541. Reverse String II -- 按步长反转字符串

2018-06-29
阅读 1 分钟
2.4k
Given a string and an integer k, you need to reverse the first k characters for every 2k characters counting from the start of the string. If there are less than k characters left, reverse all of them. If there are less than 2k but greater than or equal to k characters, then reverse the first k c...

LeetCode69. Sqrt(x) -- 求一个数的开方

2018-06-27
阅读 1 分钟
3.1k
Compute and return the square root of x, where x is guaranteed to be a non-negative integer.