题目: Given a non-negative number represented as an array of digits, plus one to the number. The digits are stored such that the most significant digit ...
分类:
其他好文 时间:
2016-09-22 00:57:54
阅读次数:
173
str2int Problem Description In this problem, you are given several strings that contain only digits from '0' to '9', inclusive.An example is shown bel ...
分类:
其他好文 时间:
2016-09-21 21:18:48
阅读次数:
177
1104. Don’t Ask Woman about Her Age Time limit: 1.0 secondMemory limit: 64 MB Mrs Little likes digits most of all. Every year she tries to make the be ...
分类:
其他好文 时间:
2016-09-21 14:36:14
阅读次数:
183
TO_DATE格式(以时间:2007-11-02 13:45:25为例) Year: yy two digits 两位年 显示值:07 yyy three digits 三位年 显示值:007 yyyy four digits 四位年 显示值:2007 Month: mm number 两位月 显示 ...
分类:
数据库 时间:
2016-09-20 16:41:22
阅读次数:
219
Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible. Note: The l ...
分类:
其他好文 时间:
2016-09-19 06:44:24
阅读次数:
133
odd-even number Problem Description For a number,if the length of continuous odd digits is even and the length of continuous even digits is odd,we cal ...
分类:
其他好文 时间:
2016-09-18 21:00:51
阅读次数:
149
Given a non-negative number represented as an array of digits, plus one to the number. The digits are stored such that the most significant digit is a ...
分类:
其他好文 时间:
2016-09-17 00:15:54
阅读次数:
145
Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 whic ...
分类:
其他好文 时间:
2016-09-16 00:14:08
阅读次数:
158
Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 主要要考虑溢出处理。 ...
分类:
其他好文 时间:
2016-09-15 17:56:58
阅读次数:
103