Typora Writingshttp://www.apple.com/customer-letter/February 16, 2016 A Message to Our CustomersThe United States government has demanded that Apple t...
分类:
移动开发 时间:
2016-02-18 10:07:42
阅读次数:
279
Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telepho
分类:
其他好文 时间:
2016-02-17 12:42:22
阅读次数:
150
文本 color(颜色,a元素除外) direction(方向) font(字体) font-family(字体系列) font-size(字体大小) font-style(用于设置斜体) font-variant(用于设置小型大写字母) font-weight(用于设置粗体) letter-spa
分类:
Web程序 时间:
2016-02-15 18:17:26
阅读次数:
184
分词的时态和语态 下面谈一下现在分词的时态和语态。 1.现在分词的完成式(having+过去分词)表示的动作发生在谓语动词所表示的动作之前或两个动作在时间上有一定的间隔。 例如: Having written the letter,John went to the post office. (=Af
分类:
其他好文 时间:
2016-02-13 17:06:10
阅读次数:
416
题目: Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letter
分类:
其他好文 时间:
2016-02-10 22:13:17
阅读次数:
205
挺有意思的一道题,思路肯定是将图转化为Trie树,这样可以求得字典序。然后,按照trie的层次求解。一直wa的原因在于将树转化为线性数据结构时要从原树遍历,从trie遍历就会wa。不同结点可能映射为trie上的同一结点,如1->2 (a) 1->3(a) 2->4(b), 这是trie的结构是RT-
分类:
其他好文 时间:
2016-02-06 18:22:24
阅读次数:
219
/** * 字母 * @author stone * */ public class Letter { private String name; public Letter(String name) { this.name = name; } public String getName() { re
分类:
编程语言 时间:
2016-01-30 18:22:13
阅读次数:
134
When messages expire on the ActiveMQ broker (they exceed their time-to-live, if set) or can’t be redelivered, they’re moved to a dead-letter queue, so...
分类:
其他好文 时间:
2016-01-19 21:00:11
阅读次数:
247
int letter = 0; int digit = 0; int other = 0; for(NSUInteger i = 0; i 0) && text.length >= 6 && text.length <= 20;判断密码有效性,主要用到了NSCharac...
分类:
其他好文 时间:
2016-01-12 01:16:53
阅读次数:
228
创建两个数组 分别记录两个字符串 各个位置字符出现的上一个位置 通过比较当前字符的上一个位置是否相同 判断是否同构比较坑爹的是 一开始以为只有字母 所以纠结于怎么找出字母来。。。代码如下:public class IsomorphicStrings { public static boolean ....
分类:
其他好文 时间:
2016-01-11 06:50:17
阅读次数:
203