Given three strings: s1, s2, s3, determine whether s3 is formed by the interleaving of s1 and s2.
Example
For s1 = "aabcc" s2 = "dbbca"
- When s3 = "aadbbcbcac", return true.
- When s3...
分类:
其他好文 时间:
2015-02-06 16:55:45
阅读次数:
98
Gene and Gina have a particular kind of farm. Instead of growing animals and vegetables, as it is usually the case in regular farms, they grow strings. A string is a sequence of characters. Strings hav...
Write a function to find the longest common prefix string amongst an array of strings.思路: 很简单,其他字符串和第一个字符串比较,一个一个字符比较,反正最长不会超过第一个字符串的长度。class Solution...
分类:
其他好文 时间:
2015-02-06 13:06:07
阅读次数:
121
Compare two strings A and B, determine whether A contains all of the characters in B.The characters in string A and B are all Upper Case letters.Examp...
分类:
其他好文 时间:
2015-02-05 07:03:49
阅读次数:
311
AnagramsGiven an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.思路:什么是anagrams?傻逼了,百度吧。一百度全是别...
分类:
其他好文 时间:
2015-02-04 23:02:59
阅读次数:
137
编辑strings.xml的时候,提示 %编译不通过。
http://aa.cc.com/dd?g=%rasdf
或者
这里是积分 %1s 积分,占比%2s %
提示下面的错误
Multiple annotations found at this line:
- error: Multiple substitutions specified in no...
分类:
移动开发 时间:
2015-02-04 18:46:48
阅读次数:
341
Add Binary
Total Accepted: 31178 Total
Submissions: 124110My Submissions
Question
Solution
Given two binary strings, return their sum (also a binary string).
For example,
a = "1...
分类:
其他好文 时间:
2015-02-04 13:02:58
阅读次数:
142
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ofs...
分类:
其他好文 时间:
2015-02-04 12:36:35
阅读次数:
104
题目:《编程之美》P223
string sub_string(const string &s, const int begin,const int end)
{
if (begin > end)
return "";
return s.substr(begin, end);
}
int strings_distance(string s1, string s2)
{
if ...
分类:
编程语言 时间:
2015-02-03 23:07:31
阅读次数:
235
Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longest pa...
分类:
其他好文 时间:
2015-02-03 21:02:01
阅读次数:
155