Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without
repeating letters for "abcabcbb" is "abc", which the length is 3. Fo...
分类:
其他好文 时间:
2014-12-11 22:33:05
阅读次数:
403
Length of Last WordGiven a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.I...
分类:
其他好文 时间:
2014-12-11 17:02:35
阅读次数:
133
目前ios的指令集有以下几种:
i386:mac
armv6:iPhone,iPhone2,iPhone3G,第一代和第二代iPod Touch
armv7:iPhone 3GS, iPhone 4, iPhone 4S, iPod 3G/4G/5G, iPad, iPad 2, iPad 3, iPad Mini
armv7s:iPhone5,iPhone5C, iPad 4...
分类:
其他好文 时间:
2014-12-11 10:26:49
阅读次数:
301
目录 一简介 KVC简介 KVO简介 二KVC相关技术 Key和Key Path 点语法和KVC 一对多关系To-Many中的集合访问器方法 键值验证Key-Value Valid...
分类:
其他好文 时间:
2014-12-10 22:35:06
阅读次数:
409
DescriptionFor this question, your program is required to process an input string containing only ASCII characters between ‘0’ and ‘9’, or between ‘a’...
分类:
其他好文 时间:
2014-12-10 15:46:49
阅读次数:
184
Minimum Window SubstringGiven a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).Fo...
Xcode编辑器的Valid Architecture 浅析...
分类:
其他好文 时间:
2014-12-09 12:20:49
阅读次数:
153
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 complexity O(n).
For example,
S = "ADOBECODEBANC"
T =...
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2014-12-08 21:07:17
阅读次数:
128
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" are all vali...
分类:
其他好文 时间:
2014-12-08 14:03:01
阅读次数:
146