
Leetcode
Trap_In_Study
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LeetCode刷题之String篇
3. Longest Substring Without Repeating Characters Code it now! https://leetcode.com/problems/longest-substring-without-repeating-characters/ 难度:medium 问题描述: 给定字符串,找出最长没有重复字符的子串。 必须是子串,而不是序列原创 2018-01-22 21:37:19 · 377 阅读 · 0 评论 -
Leetcode刷题之Array篇
1. Two Sum Code it now! https://leetcode.com/problems/two-sum/ 难度:easy 问题描述: 一个整数数组,找出某两个数加和等于某一个特定的数(target)。 要求函数twoSum返回符合要求的两数在数组中所处的位置,index1和index2(index1必须小于index2)。请注意,你所编写的函数返回值应该是原创 2018-01-17 10:08:10 · 525 阅读 · 0 评论