https://leetcode.com/problems/largest-number/Given a list of non negative integers, arrange them such that they form the largest number.For example, g...
分类:
其他好文 时间:
2015-05-06 20:59:18
阅读次数:
117
https://leetcode.com/problems/word-break/Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence o...
分类:
其他好文 时间:
2015-05-06 19:36:19
阅读次数:
204
https://leetcode.com/problems/add-binary/Given two binary strings, return their sum (also a binary string).For example,a ="11"b ="1"Return"100". 1 imp...
分类:
其他好文 时间:
2015-05-06 06:49:57
阅读次数:
150
https://leetcode.com/problems/implement-strstr/Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is ...
分类:
其他好文 时间:
2015-05-06 01:22:53
阅读次数:
167
https://leetcode.com/problems/length-of-last-word/Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the leng...
分类:
其他好文 时间:
2015-05-06 01:14:51
阅读次数:
152
https://leetcode.com/problems/count-and-say/The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1i...
分类:
其他好文 时间:
2015-05-05 23:21:15
阅读次数:
121
题目地址: https://leetcode.com/problems/sudoku-solver/// 将字符串的数独题转换成 int[9][9]void setBoard(int board[9][9], char ** b, int boardRowSize, int boardColSize...
分类:
其他好文 时间:
2015-05-05 23:19:29
阅读次数:
300
https://leetcode.com/problems/reverse-linked-list/Reverse a singly linked list 1 public class Solution { 2 public static ListNode reverseList(List...
分类:
其他好文 时间:
2015-05-05 21:25:22
阅读次数:
113
https://leetcode.com/problems/count-primes/Description:Count the number of prime numbers less than a non-negative number,nclick to show more hints.Cre...
分类:
其他好文 时间:
2015-05-05 21:10:44
阅读次数:
103
https://leetcode.com/problems/balanced-binary-tree/https://leetcode.com/discuss/28162/java-o-n-solution-based-on-maximum-depth-of-binary-treeGiven a b...
分类:
其他好文 时间:
2015-05-05 18:52:21
阅读次数:
128