
相邻
文章平均质量分 71
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 163. Missing Ranges(缺失区间)
原题网址:https://leetcode.com/problems/missing-ranges/Given a sorted integer array where the range of elements are [lower, upper] inclusive, return its missing ranges.For example, given [0, 1, 3原创 2016-05-25 01:40:33 · 2346 阅读 · 0 评论 -
LeetCode 276. Paint Fence(篱笆涂色)
原题网址:https://leetcode.com/problems/paint-fence/There is a fence with n posts, each post can be painted with one of the k colors.You have to paint all the posts such that no more than two adj原创 2016-04-14 00:48:41 · 1618 阅读 · 0 评论 -
LeetCode 130. Surrounded Regions(包围区域)
原题网址:https://leetcode.com/problems/surrounded-regions/Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.A region is captured by flipping all 'O's into 'X's i原创 2016-05-27 00:25:49 · 535 阅读 · 0 评论 -
LeetCode 132. Palindrome Partitioning II(回文切分)
原题网址:https://leetcode.com/problems/palindrome-partitioning-ii/Given a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a pa原创 2016-05-27 00:22:56 · 794 阅读 · 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 324. Wiggle Sort II(摇摆排序)
原题网址:https://leetcode.com/problems/wiggle-sort-ii/Given an unsorted array nums, reorder it such that nums[0] nums[2] .Example:(1) Given nums = [1, 5, 1, 1, 6, 4], one possible answer is原创 2016-06-05 00:58:45 · 1480 阅读 · 0 评论 -
LeetCode 337. House Robber III(小偷游戏)
原题网址:https://leetcode.com/problems/house-robber-iii/The thief has found himself a new place for his thievery again. There is only one entrance to this area, called the "root." Besides the root,原创 2016-04-30 06:12:14 · 1021 阅读 · 0 评论 -
LeetCode 305. Number of Islands II(小岛)
原题网址:https://leetcode.com/problems/number-of-islands-ii/A 2d grid map of m rows and n columns is initially filled with water. We may perform an addLand operation which turns the water at posit原创 2016-04-19 13:13:25 · 3629 阅读 · 0 评论 -
LeetCode 91. Decode Ways(解码方法)
原题网址:https://leetcode.com/problems/decode-ways/A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an enco原创 2016-05-26 00:47:29 · 754 阅读 · 0 评论 -
LeetCode 162. Find Peak Element(查找峰值)
原题网址:https://leetcode.com/problems/find-peak-element/A peak element is an element that is greater than its neighbors.Given an input array where num[i] ≠ num[i+1], find a peak element and ret原创 2016-05-25 01:40:48 · 2302 阅读 · 0 评论 -
LeetCode 463. Island Perimeter
原题网址:https://leetcode.com/problems/island-perimeter/You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizon原创 2016-11-21 04:00:43 · 1529 阅读 · 0 评论