Pre x goodness of a set string is length of longest common pre x*number of strings in the set. For
example the pre x goodness of the set f000,001,0011g is 6.You are given a set of binary strings. Fin...
分类:
其他好文 时间:
2015-04-06 01:07:22
阅读次数:
178
题目链接:点击打开链接
题意:
给出长度为n的2个数字串S ,T(有些位置为?表示可以随便填数字)
求:有多少种填充方式使得 S[i]>T[i] && S[j]
思路:
先求出ans表示所有填充方式,ans = 10^num, num为2个串?的总个数
dp[0][i]表示长度为i 且对于任意的 j( 1
dp[1][i] 表示 S[j]==T[j]
dp[2[i] 表示 S[j...
分类:
其他好文 时间:
2015-04-05 23:39:46
阅读次数:
364
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return all possible palindrome partitioning ofs.For example, giv...
分类:
其他好文 时间:
2015-04-05 15:53:15
阅读次数:
107
问题:提供天气信息的网站有很多,每家的数据及格式都不同,为了适配各种不同的天气接口,写了如下程序。代码如下:package mainimport ( "encoding/json" "errors" "fmt" "regexp" "strconv" "strings")var s str...
分类:
编程语言 时间:
2015-04-03 19:15:18
阅读次数:
164
C-style strings(C 风格字符串) C 程序把指向以空字符结束的字符数组的指针视为字符串。在 C++ 中,字符串字面值就是 C 风格字符串。C 标准库定义了一系列处理这样的字符串的库函数,C++ 中将这些标准库函数放在cstring 头文件里。因为 C 风格字符串本质上easy出错,C...
分类:
编程语言 时间:
2015-04-03 18:49:05
阅读次数:
292
Longest Palindromic Substring问题:Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and th...
分类:
其他好文 时间:
2015-04-03 17:06:38
阅读次数:
112
problem:
Given two binary strings, return their sum (also a binary string).
For example,
a = "11"
b = "1"
Return "100".
Hide Tags
Math String
题意:二进制数相加,二进制数用string表示
...
分类:
其他好文 时间:
2015-04-03 11:20:12
阅读次数:
121
String
XML resource that provides a single string.
String Array
XML resource that provides an array of strings.
Plurals
XML resource that carries different strings for different pluralizations of the same...
分类:
移动开发 时间:
2015-04-03 00:20:33
阅读次数:
140
Localizable.strings 对应的是NSLocalizedString函数的本地化iOS名字是在Info.plist中的Bundle display name 设置Info.plist 可以本地化,但很多数值是变量,而且本地化只针对字符串;另外一种方式是建立 InfoPlist.stri...
分类:
移动开发 时间:
2015-04-02 13:14:07
阅读次数:
135
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.http://www.cnblogs.com/AnnieKim/archi...
分类:
其他好文 时间:
2015-04-02 06:37:46
阅读次数:
113