打算全面的学习一下Git的相关知识,比较网上的资料,觉得《Git社区书》篇幅合适,覆盖全面,就是它了。chapter1 介绍1.Git是一个快速的分布式版本控制系统。2.所有用来表示项目历史信息的文件,是通过一个40个字符的(40-digit)“ 对象名” 来索引的。每一个“ 对象名” 都是对“ ....
分类:
编程语言 时间:
2014-11-01 16:04:08
阅读次数:
192
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 at the head of the list.
一开始我误解了题目的意思,以为是新建一个...
分类:
其他好文 时间:
2014-10-31 22:16:05
阅读次数:
253
1583 - Digit GeneratorFor a positive integer N , the digit-sum of N is defined as the sum of N itself and its digits. When M is the digitsum of N , we...
分类:
其他好文 时间:
2014-10-30 22:18:18
阅读次数:
234
题目大意:给你一个N,计算N^N个位上的数字是多少
思路:普通方法超时,利用快速幂取余计算N^N%10,这里贴一个二进制
快速幂取余的代码...
分类:
Web程序 时间:
2014-10-29 00:20:46
阅读次数:
256
问题描述:
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 at the head of the list.
代码:
...
分类:
其他好文 时间:
2014-10-28 17:49:25
阅读次数:
147
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 at the head of the list.
题目描述:
输入一个数组表示的...
分类:
其他好文 时间:
2014-10-28 13:53:27
阅读次数:
157
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 at...
分类:
其他好文 时间:
2014-10-26 16:58:18
阅读次数:
134
【题目】
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it...
分类:
其他好文 时间:
2014-10-26 14:21:29
阅读次数:
243
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 at...
分类:
其他好文 时间:
2014-10-26 11:35:14
阅读次数:
142
题目: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...
分类:
其他好文 时间:
2014-10-25 22:56:10
阅读次数:
164