Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string. Example 1: Ex ...
分类:
其他好文 时间:
2019-04-18 12:17:45
阅读次数:
150
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 ...
分类:
其他好文 时间:
2019-04-14 13:55:29
阅读次数:
107
https://leetcode.com/problems/complement-of-base-10-integer/ Every non-negative integer N has a binary representation. For example, 5 can be represent ...
分类:
其他好文 时间:
2019-04-13 11:05:04
阅读次数:
144
https://leetcode.com/problems/sum-of-square-numbers/ Given a non-negative integer c, your task is to decide whether there're two integers a and b such ...
分类:
其他好文 时间:
2019-04-13 10:41:19
阅读次数:
149
https://leetcode.com/problems/number-of-digit-one/ Given an integer n, count the total number of digit 1 appearing in all non-negative integers less t ...
分类:
其他好文 时间:
2019-04-13 10:34:55
阅读次数:
119
410. Split Array Largest Sum Given an array which consists of non-negative integers and an integer m, you can split the array into m non-empty continu ...
分类:
其他好文 时间:
2019-04-13 09:13:00
阅读次数:
162
写给小陈~ 参考文献: Chou X., Gambardella L.M., Montemanni R. (2018) Monte Carlo Sampling for the Probabilistic Orienteering Problem. In: Daniele P., Scrimali ...
分类:
编程语言 时间:
2019-04-11 01:39:45
阅读次数:
189
Description: Implement int sqrt(int x). Compute and return the square root of x, where x is guaranteed to be a non-negative integer. Since the return ...
分类:
其他好文 时间:
2019-04-09 20:24:04
阅读次数:
148
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 ...
分类:
其他好文 时间:
2019-04-09 16:39:39
阅读次数:
167
Given a list, rotate the list to the right by k places, where k is non-negative. Example: class Solution { public ListNode rotateRight(ListNode head, ...
分类:
其他好文 时间:
2019-04-09 16:32:40
阅读次数:
120