BackgroundThe digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that dig ...
分类:
其他好文 时间:
2017-03-08 19:26:47
阅读次数:
133
Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 //翻转数字 注意点:1.如果数字的最后后几位是0 eg10,100; 2.数字如果溢出如何处理? ...
分类:
其他好文 时间:
2017-03-07 08:47:30
阅读次数:
188
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1060 题目大意:求N^N的最高位数字。 关键思想:换底公式使结果变为10^(N*log10(N)),再除以10^(digits-1)就OK了。 代码如下: ...
分类:
其他好文 时间:
2017-03-06 22:16:35
阅读次数:
147
A message containing letters from A-Z is being encoded to numbers using the following mapping: Given an encoded message containing digits, determine t ...
分类:
其他好文 时间:
2017-03-03 01:36:42
阅读次数:
170
a.isdigit()判断是不是纯数字,是Trueimportstringifiinstring.digits:判断是不是存数字os.listdir(‘/home‘)列出所有文件,只有一层,以列表形式os.listdir(‘.‘)列出文件os.path.dirname(__file__)当前目录,就是脚本所在目录os.path.abspath(‘tmp‘)tmp这个文件或者文件夹的绝..
分类:
编程语言 时间:
2017-02-28 14:07:18
阅读次数:
186
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 ...
分类:
其他好文 时间:
2017-02-27 01:16:22
阅读次数:
163
Description: You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their ...
分类:
其他好文 时间:
2017-02-26 23:37:54
阅读次数:
145
code第一部分数组:第十六题 数组表示数,加一操作 Given a number represented as an array of digits, plus one to the number. ...
分类:
编程语言 时间:
2017-02-25 22:48:20
阅读次数:
195
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 leading... ...
分类:
其他好文 时间:
2017-02-23 23:54:30
阅读次数:
345
生成激活码#!/usr/bin/envpython
#encoding:utf-8
#Author:sean
importstring
importrandom
#激活码中的字符和数字
field=string.letters+string.digits
#获得四个字母和数字的随机组合
defgetRandom():
return‘‘.join(random.sample(field,4))
#生成的每个激活码中有几组
..
分类:
编程语言 时间:
2017-02-21 19:55:34
阅读次数:
240