码迷,mamicode.com
首页 >  
搜索关键字:plus-one    ( 245个结果
[Leetcode] Plus One
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
LeetCose-Plus One
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
[Leetcode] Plus One
题目: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
Leetcode Plus One
//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 i...
分类:其他好文   时间:2014-10-19 19:47:29    阅读次数:241
leetcode - Plus One
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. class Solution { pub...
分类:其他好文   时间:2014-10-14 16:04:43    阅读次数:154
LeetCode Plus One
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-12 13:29:18    阅读次数:160
Leetcode Plus One
//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. //digits={9,9,9,...
分类:其他好文   时间:2014-10-06 13:46:10    阅读次数:200
每日算法之四十八:Plus One (数组表示的十进制加一进位)以及求Sqrt(x)
给定数组表示的十进制数,加一操作。结果依然用十进制的数组表示。这里主要注意最高位(digit[0])依然有进位,即溢出的情况。 Given a non-negative number represented as an array of digits, plus one to the number. The digits are stored such that the most si...
分类:其他好文   时间:2014-09-15 21:25:19    阅读次数:236
[leetcode]Plus One @ Python
原题地址:https://oj.leetcode.com/problems/plus-one/题意:Given a non-negative number represented as an array of digits, plus one to the number.The digits are...
分类:编程语言   时间:2014-09-14 05:47:06    阅读次数:218
LeetCode--Plus One
考查,最高位有进位 1 class Solution { 2 public: 3 vector plusOne(vector &digits) { 4 // IMPORTANT: Please reset any member data you declared, as 5 ...
分类:其他好文   时间:2014-09-04 23:36:30    阅读次数:256
245条   上一页 1 ... 20 21 22 23 24 25 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!