ProblemSet
有梦想的Hollin
这个作者很懒,什么都没留下…
展开
-
Add Two Numbers
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原创 2018-01-03 13:54:51 · 187 阅读 · 0 评论 -
Longest Substring Without Repeating Characters
Longest Substring Without Repeating CharactersDescription Given a string, find the length of the longest substring without repeating characters.Examples:Given “abcabcbb”, the answer is “abc”, which th原创 2018-01-03 14:41:18 · 167 阅读 · 0 评论 -
Median of Two Sorted Arrays
DescriptionThere are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).ExampleExample 1: n原创 2018-01-04 19:55:23 · 113 阅读 · 0 评论