
LeetCode
文章平均质量分 70
bestwait
To be one to chase!
展开
-
Linked List Cycle I和II 以及扩展
Linked List Cycle I和II 以及扩展原创 2016-05-16 09:26:22 · 276 阅读 · 0 评论 -
Valid Number(LeetCode)
Valid Number(LeetCode)原创 2016-05-09 16:39:37 · 233 阅读 · 0 评论 -
Longest Substring Without Repeating Characters(LeetCode)
Longest Substring Without Repeating Characters(LeetCode)原创 2016-05-09 17:06:22 · 204 阅读 · 0 评论 -
Counting Bits
Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary representation and return them as an array. Example: For num = 5原创 2016-05-13 17:04:07 · 214 阅读 · 0 评论 -
Subsets(Array/ Bit Manipulation )
Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets. For原创 2016-05-12 17:40:35 · 256 阅读 · 0 评论 -
Integer to English Words
Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 231 - 1. For example, 123 -> "One Hundred Twenty Three" 12345 -> "Twelve Thousand Th原创 2016-05-12 14:40:09 · 237 阅读 · 0 评论 -
Longest Palindromic Substring
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring. 题目:查找字符串中最长回文子原创 2016-05-09 21:36:43 · 669 阅读 · 0 评论 -
Implement strStr()
LeetCode----Implement strStr()原创 2016-05-06 19:49:26 · 275 阅读 · 0 评论