Reverse Integer Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 Note:The input is assumed to be a 32-bit si ...
分类:
其他好文 时间:
2017-09-22 00:49:52
阅读次数:
112
ORACLE日期时间函数大全 TO_DATE格式(以时间:2007-11-02 13:45:25为例) Year: yy two digits 两位年 显示值:07 yyy three digits 三位年 显示值:007 yyyy four digits 四位年 显示值:2007 Month: m ...
分类:
数据库 时间:
2017-09-21 19:21:01
阅读次数:
175
(sb CSDN有些毛病,先贴这里……) 题意:T组数据,每组数据输入一个n,求最小的不小于n的x,满足x的各位加一起可以整除x。 题解:暴力。直接从n开始枚举x判断各位加一起是否能整除该数。 自己跑程序随机测试1000w个数,最多的一个需要判断512次,平均判断次数。 所以认为这种暴力在随机数据下 ...
分类:
其他好文 时间:
2017-09-20 21:58:06
阅读次数:
183
题目链接:点击打开链接 题目大意:给出一个n和一个k 求m 要求1、m要和n相同的位数 要求2、m要整除k 要求3、如果1和2满足,那么m要和n有尽量少的不同位 要求4、如果1、2、3满足,要使m尽量的小 简单的一个深搜,但是直接被要求吓蒙,,,,, 要求1和2直接可以在搜索时判断,要求3可以在深搜 ...
分类:
其他好文 时间:
2017-09-20 19:32:23
阅读次数:
132
Given a non-negative integer represented as a non-empty array of digits, plus one to the integer. You may assume the integer do not contain any leadin ...
分类:
其他好文 时间:
2017-09-19 23:11:55
阅读次数:
320
教训: 在调用request方法,实现模拟访问URL,返回状态码及响应结果时,由于自己写的某个文件命名为string.py,导致出现错误 from string import ascii_letters, digits, hexdigits ImportError: cannot import na ...
分类:
其他好文 时间:
2017-09-19 23:08:00
阅读次数:
265
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他好文 时间:
2017-09-15 14:46:16
阅读次数:
143
An integer is divisible by 3 if the sum of its digits is also divisible by 3. For example, 3702 is divisible by 3 and 12 (3+7+0+2) is also divisible b ...
分类:
其他好文 时间:
2017-09-13 23:13:34
阅读次数:
169
给出模板串S和串T,长度分别为Slen和Tlen,在线性时间内,对于每个S[i](0<=i<Slen),求出S[i..Slen-1]与T的 最长公共前缀长度,记为extend[i],extend[i]存放s[i]开始与T的最长公共前缀长度。 例子 a a a a a a a b b b a a a ...
分类:
其他好文 时间:
2017-09-13 15:20:57
阅读次数:
263
Description: Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 Have you thought about this? Here are some goo ...
分类:
其他好文 时间:
2017-09-12 16:13:10
阅读次数:
125