码迷,mamicode.com
首页 >  
搜索关键字:digits    ( 2164个结果
resotreIpAddress
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
LeetCode题目1 - Reverse Integer
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 和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
hdu 5564 Clarke and digits
题目链接http://acm.hdu.edu.cn/showproblem.php?pid=5564-----------------------------------------------------------------------------------------刚读完题目感觉像是数位...
分类:其他好文   时间:2015-11-22 11:08:17    阅读次数:120
leetcode Letter Combinations of a Phone Number python
class Solution(object): def letterCombinations(self, digits): """ :type digits: str :rtype: List[str] """ if len...
分类:编程语言   时间:2015-11-21 00:39:29    阅读次数:317
[LeetCode]Add Digits
题目描述:(链接)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
[LeetCode][JavaScript]Additive Number
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
[Lintcode] Add Two Numbers I && II
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 Integer
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
LeetCode OJ:Restore IP Addresses(存储IP地址)
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!