
序列
文章平均质量分 73
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 325. Maximum Size Subarray Sum Equals k(和为k的最长子数组)
原题网址:https://leetcode.com/problems/maximum-size-subarray-sum-equals-k/ Given an array nums and a target value k, find the maximum length of a subarray that sums to k. If there isn't one, return 0原创 2016-04-26 06:10:18 · 2463 阅读 · 0 评论 -
446. Arithmetic Slices II - Subsequence
原题网址:https://leetcode.com/problems/arithmetic-slices-ii-subsequence/ A sequence of numbers is called arithmetic if it consists of at least three elements and if the difference between any two con原创 2016-12-04 04:18:05 · 1323 阅读 · 0 评论 -
456. 132 Pattern
原题网址:https://leetcode.com/problems/132-pattern/ Given a sequence of n integers a1, a2, ..., an, a 132 pattern is a subsequence ai, aj, ak such that i j k and ai < ak j. Design an algori原创 2016-11-30 04:37:54 · 1629 阅读 · 1 评论 -
LeetCode 156. Binary Tree Upside Down(树的倒转)
原题网址:https://leetcode.com/problems/binary-tree-upside-down/ Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that shares the same parent node) or em原创 2016-05-26 00:48:19 · 901 阅读 · 0 评论 -
LeetCode 354. Russian Doll Envelopes(信封包装)
原题网址:https://leetcode.com/problems/russian-doll-envelopes/ You have a number of envelopes with widths and heights given as a pair of integers (w, h). One envelope can fit into another if and on原创 2016-06-16 06:39:42 · 2620 阅读 · 0 评论 -
LeetCode 309. Best Time to Buy and Sell Stock with Cooldown(股票交易)
原题网址:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/ Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to原创 2016-04-20 13:34:58 · 673 阅读 · 0 评论 -
LeetCode 128. Longest Consecutive Sequence(最长连续序列)
原题网址:https://leetcode.com/problems/longest-consecutive-sequence/ Given an unsorted array of integers, find the length of the longest consecutive elements sequence. For example, Given [100, 4,原创 2016-05-27 00:26:15 · 846 阅读 · 0 评论 -
LeetCode 187. Repeated DNA Sequences(重复DNA序列)
原题网址:https://leetcode.com/problems/repeated-dna-sequences/ All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAATTCCG". When studying DNA, it is someti原创 2016-05-25 01:35:57 · 637 阅读 · 0 评论 -
LeetCode 118. Pascal's Triangle(帕斯卡三角)
原题网址:https://leetcode.com/problems/pascals-triangle/ Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5, Return [ [1], [1,1], [1,2,1],原创 2016-05-24 00:19:50 · 714 阅读 · 0 评论 -
467. Unique Substrings in Wraparound String
原题网址:https://leetcode.com/problems/unique-substrings-in-wraparound-string/ Consider the string s to be the infinite wraparound string of "abcdefghijklmnopqrstuvwxyz", so s will look like this:原创 2016-12-06 05:32:55 · 686 阅读 · 0 评论