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 ...
分类:
其他好文 时间:
2015-07-06 23:09:28
阅读次数:
180
Largest NumberGiven a list of non negative integers, arrange them such that they form the largest number.For example, given[3, 30, 34, 5, 9], the larg...
分类:
编程语言 时间:
2015-07-06 14:09:52
阅读次数:
130
Descending OrderDescription:Your task is to make a function that can take any non-negative integer as a argument and return it with it's digits in des...
分类:
其他好文 时间:
2015-07-05 13:45:16
阅读次数:
131
题目:
Implement a basic calculator to evaluate a simple expression string.
The expression string may contain open ( and closing parentheses ),
the plus + or minus sign -, non-negative integers...
分类:
编程语言 时间:
2015-07-03 09:20:19
阅读次数:
143
题目:Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your max...
分类:
其他好文 时间:
2015-07-02 15:24:11
阅读次数:
94
Factorial 计算阶乘In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to ...
分类:
其他好文 时间:
2015-07-02 09:54:35
阅读次数:
189
Description:Implement a basic calculator to evaluate a simple expression string.The expression string contains only non-negative integers, +, -, *, / ...
分类:
其他好文 时间:
2015-07-02 00:51:47
阅读次数:
171
66 Plus One链接:https://leetcode.com/problems/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...
分类:
其他好文 时间:
2015-07-01 14:17:54
阅读次数:
135
转载请注明出处:http://www.cnblogs.com/StartoverX/p/4611518.html题目:Given an array of non-negative integers, you are initially positioned at the first index of...
分类:
其他好文 时间:
2015-06-30 21:51:24
阅读次数:
107
Given two numbers represented as strings, return multiplication of the numbers as a string.
Note: The numbers can be arbitrarily large and are non-negative.
思路:
简而言之,要实现的就是BigInteger(a).Multiply(BigInteger(b))的功能,但很显然,leetcode中不让用BigInteger...
分类:
其他好文 时间:
2015-06-30 18:20:21
阅读次数:
95