
Array
L.I.N
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Trapping Rain Water
题目: Given a non-negative integer array representing the heights of a list of adjacent bars. Suppose each bar has a width of 1. Find the largest amount of water that can be trapped in the histogram. As...原创 2019-03-25 00:04:43 · 94 阅读 · 0 评论 -
Minimum Size Subarray Sum
题目: Given an array of n positive integers and a positive integer s, find the minimal length of a contiguous subarray of which the sum ≥ s. If there isn’t one, return 0 instead. For example, given the ...原创 2019-03-24 03:39:07 · 122 阅读 · 0 评论 -
Maximum Size Subarray Sum
题目: 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 instead. Note: The sum of the entire nums array is guaranteed to fit wi...原创 2019-03-24 07:31:02 · 115 阅读 · 0 评论 -
Number of Islands
题目 Given a 2d grid map of 1s (land) and 0s (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacent lands horizontally or vertically. You may assume ...原创 2019-03-28 03:44:25 · 135 阅读 · 0 评论