原题链接在这里:https://leetcode.com/problems/create-maximum-number/description/ 题目: Given two arrays of length m and n with digits 0-9 representing two numbe ...
分类:
其他好文 时间:
2017-11-02 16:58:29
阅读次数:
164
## 题目 >Add Two NumbersYou are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their n ...
分类:
其他好文 时间:
2017-10-30 18:24:44
阅读次数:
135
Given a non-empty string containing an out-of-order English representation of digits 0-9, output the digits in ascending order. Note: Example 1: Examp ...
分类:
其他好文 时间:
2017-10-28 21:09:56
阅读次数:
216
看眼缘随机拿了一道不难的题https://leetcode.com/problems/add-digits/description/ Given a non-negative integer num, repeatedly add all its digits until the result ha ...
分类:
其他好文 时间:
2017-10-27 23:05:50
阅读次数:
159
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他好文 时间:
2017-10-25 00:46:37
阅读次数:
155
Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible. Note: The l ...
分类:
其他好文 时间:
2017-10-25 00:34:36
阅读次数:
151
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num = 38, the process is like: ...
分类:
其他好文 时间:
2017-10-24 20:53:00
阅读次数:
172
a positive integer number is beautiful if and only if it is divisible by each of its nonzero digits. 问一个区间内[l,r]有多少个Beautiful数字 范围9*10^18 思路一般,但是取模以及映 ...
分类:
其他好文 时间:
2017-10-24 00:03:34
阅读次数:
197
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他好文 时间:
2017-10-22 00:31:37
阅读次数:
133
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num = 38, the process is like: ...
分类:
其他好文 时间:
2017-10-20 21:38:54
阅读次数:
172