leetcode系列
文章平均质量分 61
chomod777
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Leetcode 1 Two Sum
这个系列的博客是我在leetcode上做题时的一些心得,代码全部使用python。原创 2017-10-21 18:00:40 · 123 阅读 · 0 评论 -
Leetcode 7 Reverse Integer
7.Reverse IntegerReverse原创 2017-10-21 18:40:25 · 144 阅读 · 0 评论 -
Leetcode 14 Longest Common Prefix
14.Longest Common PrefixWrite a function to find the longest common prefix string amongst an array of strings.题目要求返回一个最长公共前缀,先看代码:class Solution(object): def longestCommonPrefix(self, strs):原创 2017-10-21 20:54:58 · 140 阅读 · 0 评论
分享