Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpo ...
分类:
其他好文 时间:
2017-10-16 09:42:49
阅读次数:
105
2. Add Two Numbers【medium】 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and ...
分类:
其他好文 时间:
2017-10-14 21:17:05
阅读次数:
241
Given a non-negative integer represented as a non-empty array of digits, plus one to the integer. You may assume the integer do not contain any leadin ...
分类:
其他好文 时间:
2017-10-14 21:14:06
阅读次数:
144
Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2. Note: The length of both num1 and num2 is < ...
分类:
其他好文 时间:
2017-10-11 20:24:19
阅读次数:
149
在数字音频Datasheet中,我们经常看到256FS,384FS,32kHz,44.1kHz MCLK等概念。一般在数字音频芯片用3个pin作为通讯接口:BCLK,ADCLRC,DOUT。现在做个总结。 1. SAMPLING RATE: 32kHz,44.1kHz,48kHz,96kHz:音频采 ...
分类:
其他好文 时间:
2017-10-10 12:59:02
阅读次数:
365
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-09 22:41:16
阅读次数:
199
9. Palindrome Number Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. Some hints: Could negative int ...
分类:
其他好文 时间:
2017-10-09 14:20:54
阅读次数:
153
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 n ...
分类:
其他好文 时间:
2017-10-09 09:56:26
阅读次数:
113
Given an array with positive and negative numbers, find the maximum average subarray which length should be greater or equal to given length k. Notice ...
分类:
其他好文 时间:
2017-10-08 10:07:04
阅读次数:
161
Given a list, rotate the list to the right by k places, where k is non-negative. For example:Given 1->2->3->4->5->NULL and k = 2,return 4->5->1->2->3- ...
分类:
其他好文 时间:
2017-10-06 19:03:37
阅读次数:
144