Given a string containing only digits, restore it by returning all possible valid IP address combinations.For example:Given "25525511135",return ["255...
分类:
其他好文 时间:
2015-11-26 12:33:32
阅读次数:
127
Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321Discuss: 1.If the integer's last digit is 0, what should the ...
分类:
其他好文 时间:
2015-11-24 22:01:04
阅读次数:
112
Oracle 中的 TO_DATE 和TO_CHAR函数oracle 中 TO_DATE 函数的时间格式,以 2008-09-10 23:45:56 为例格式 说明 显示值 备注Year(年):yy two digits(两位年) 08yyythree digits(三位年) 008yyyy fou...
分类:
数据库 时间:
2015-11-23 13:02:11
阅读次数:
271
题目链接http://acm.hdu.edu.cn/showproblem.php?pid=5564-----------------------------------------------------------------------------------------刚读完题目感觉像是数位...
分类:
其他好文 时间:
2015-11-22 11:08:17
阅读次数:
120
class Solution(object): def letterCombinations(self, digits): """ :type digits: str :rtype: List[str] """ if len...
分类:
编程语言 时间:
2015-11-21 00:39:29
阅读次数:
317
题目描述:(链接)Given a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is ...
分类:
其他好文 时间:
2015-11-20 12:19:27
阅读次数:
154
Additive NumberAdditive number is a positive integer whose digits can form additive sequence.A valid additive sequence should containat leastthree num...
分类:
编程语言 时间:
2015-11-18 23:04:05
阅读次数:
767
Add Two NumbersYou have two numbers represented by a linked list, where each node contains a single digit. The digits are stored inreverseorder, such ...
分类:
其他好文 时间:
2015-11-17 12:52:20
阅读次数:
180
Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321overflow!public class Solution { public int reverse(int x...
分类:
其他好文 时间:
2015-11-17 10:56:06
阅读次数:
162
Given a string containing only digits, restore it by returning all possible valid IP address combinations.For example:Given"25525511135",return["255.2...
分类:
其他好文 时间:
2015-11-10 17:50:56
阅读次数:
243