题目: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...
分类:
编程语言 时间:
2015-01-16 23:37:11
阅读次数:
215
Given a list of non negative integers, arrange them such that they form the largest number.
For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330.
Note: The result may be ve...
分类:
其他好文 时间:
2015-01-16 19:14:01
阅读次数:
180
Given a list of non negative integers, arrange them such that they form the largest number.For example, given[3, 30, 34, 5, 9], the largest formed num...
分类:
其他好文 时间:
2015-01-16 18:43:33
阅读次数:
193
标题:Plus One通过率:31.1%难度:简单Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the mos...
分类:
其他好文 时间:
2015-01-16 16:22:45
阅读次数:
156
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-01-16 16:13:48
阅读次数:
116
题目: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 sing...
分类:
编程语言 时间:
2015-01-16 14:37:18
阅读次数:
247
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.
class Solution {
public:
string mul...
分类:
其他好文 时间:
2015-01-16 11:25:18
阅读次数:
165
Largest Number
Total Accepted: 2269
Total Submissions: 15366
Given a list of non negative integers, arrange them such that they form the largest number.
For example, given [3, 30, 34, 5, 9],...
分类:
其他好文 时间:
2015-01-16 06:33:37
阅读次数:
106
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining....
分类:
移动开发 时间:
2015-01-16 01:02:04
阅读次数:
202
# -*- coding: utf8 -*-'''https://oj.leetcode.com/problems/container-with-most-water/Given n non-negative integers a1, a2, ..., an, where each represen...
分类:
编程语言 时间:
2015-01-15 20:18:43
阅读次数:
987