book your favorite book a story in your childhood a character in film or TV |词汇|含义|备注| | | | | | trend |趋势 | | | individuality |个性 | | | negative | 消极 ...
分类:
其他好文 时间:
2018-12-08 18:28:38
阅读次数:
186
题目限定输入是[0, 10^8],因而不用考虑负数或者越界情况,算是减小了难度。 1 public class Solution { 2 /** 3 * @param num: a non-negative intege 4 * @return: the maximum valued number ...
分类:
其他好文 时间:
2018-12-05 21:46:24
阅读次数:
188
Given two non negative integers num1 and num2 represented as string, return the sum of num1 and num2. Note: + The length of both num1 and num2 is =0; ...
分类:
其他好文 时间:
2018-12-04 22:38:04
阅读次数:
244
You are given a list of non negative integers, a1, a2, …, an, and a target, S. Now you have 2 symbols + and . For each integer, you should choose one ...
分类:
其他好文 时间:
2018-12-03 23:02:27
阅读次数:
218
A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and negative. The ...
分类:
其他好文 时间:
2018-12-03 22:57:23
阅读次数:
314
Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle. Note that the row index starts from 0. In Pascal's trian ...
分类:
其他好文 时间:
2018-12-02 19:22:23
阅读次数:
149
Given a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes. Example: Input: 1 \ 3 / 2 O ...
分类:
其他好文 时间:
2018-12-01 13:24:40
阅读次数:
169
Given a data stream input of non-negative integers a1, a2, ..., an, ..., summarize the numbers seen so far as a list of disjoint intervals. For exampl ...
分类:
其他好文 时间:
2018-11-29 23:18:08
阅读次数:
231
https://leetcode.com/problems/largest-number/ Given a list of non negative integers, arrange them such that they form the largest number. Example 1: E ...
分类:
其他好文 时间:
2018-11-29 20:02:56
阅读次数:
90
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 ...
分类:
其他好文 时间:
2018-11-29 15:01:13
阅读次数:
143