
leetcode
小沫_jie
这个作者很懒,什么都没留下…
展开
-
2. Add Two Numbers
Add Two NumbersYou are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and retur原创 2016-10-08 16:25:59 · 260 阅读 · 0 评论 -
3. Longest Substring Without Repeating Characters
Longest Substring Without Repeating CharactersGiven a string, find the length of the longest substring without repeating characters.Examples:Given “abcabcbb”, the answer is “abc”, which the length is 3原创 2016-10-09 14:15:58 · 312 阅读 · 0 评论 -
1. Two Sum
1. Two SumGiven 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.Example: Given nums =原创 2016-10-07 23:13:03 · 231 阅读 · 0 评论