76 Minimum Window Substring链接:https://leetcode.com/problems/minimum-window-substring/
问题描述:
Given a string S and a string T, find the minimum window in S which will contain all the characters in T in...
3 Longest Substring Without Repeating Characters链接:https://leetcode.com/problems/longest-substring-without-repeating-characters/
问题描述:
Given a string, find the length of the longest substring withou...
分类:
其他好文 时间:
2015-07-10 09:34:17
阅读次数:
134
217 Contains Duplicate链接:https://leetcode.com/problems/contains-duplicate/
问题描述:
Given an array of integers, find if the array contains any duplicates. Your function should return true if any valu...
分类:
其他好文 时间:
2015-07-10 09:34:14
阅读次数:
118
219 Contains Duplicate II链接:https://leetcode.com/problems/contains-duplicate-ii/
问题描述:
Given an array of integers and an integer k, find out whether there there are two distinct indices i and j in...
分类:
其他好文 时间:
2015-07-10 09:30:38
阅读次数:
113
在Problems里报错Description Resource Path Location TypeUnbound classpath container: 'JRE System Library [jdk1.6.0_21]' in project 'EHMS' EHMS Build path B...
分类:
系统相关 时间:
2015-07-10 00:03:49
阅读次数:
1682
136 Single Number链接:https://leetcode.com/problems/single-number/
问题描述:
Given an array of integers, every element appears twice except for one. Find that single one.Note:
Your algorithm should hav...
分类:
其他好文 时间:
2015-07-09 14:34:47
阅读次数:
92
https://leetcode.com/problems/minimum-depth-of-binary-tree/ 1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int val; 5 ...
分类:
其他好文 时间:
2015-07-09 12:50:40
阅读次数:
102
https://leetcode.com/problems/populating-next-right-pointers-in-each-node/ 1 /** 2 * Definition for binary tree with next pointer. 3 * struct TreeLi.....
分类:
其他好文 时间:
2015-07-09 12:46:18
阅读次数:
91
36 Valid Sudoku链接:https://leetcode.com/problems/valid-sudoku/
问题描述:
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty ce...
分类:
其他好文 时间:
2015-07-08 19:10:38
阅读次数:
131
1 Two Sum链接:https://leetcode.com/problems/two-sum/
问题描述:
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of t...
分类:
其他好文 时间:
2015-07-08 14:39:14
阅读次数:
131