【题目】Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "ad...
分类:
其他好文 时间:
2015-05-06 10:40:43
阅读次数:
159
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2015-05-06 06:53:51
阅读次数:
135
Problem:
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 lengt...
分类:
其他好文 时间:
2015-05-05 21:56:58
阅读次数:
134
Copied from:http://www.elsevier.com/journals/applied-mathematics-letters/0893-9659/guide-for-authorsThe purpose ofApplied Mathematics Lettersis to pro...
分类:
其他好文 时间:
2015-05-05 13:59:48
阅读次数:
977
An anagram of a string is any string that can be formedusing the same letters as the original. (We consider the original string ananagram of itself as well.) For example, the string
ACM has thefollow...
分类:
其他好文 时间:
2015-05-04 22:13:13
阅读次数:
277
题目:
Given a digit string, return all possible letter combinations that the number could represent.
A mapping of digit to letters (just like on the telephone buttons) is given below.
Input...
分类:
其他好文 时间:
2015-05-04 12:00:15
阅读次数:
107
题目:Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telep...
分类:
其他好文 时间:
2015-05-04 08:37:28
阅读次数:
183
Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telephon...
分类:
其他好文 时间:
2015-05-03 20:30:08
阅读次数:
112
Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telephon...
分类:
编程语言 时间:
2015-05-02 11:04:18
阅读次数:
161
#include #include #include struct namect{ char fname[20]; //数组 char *lname; //指针 int letters;};void getinfo(struct namect *);s...
分类:
编程语言 时间:
2015-05-01 16:04:28
阅读次数:
141