To the Top
File:  root - text - article - 2019 - 11 - minimum-size-subarray-sum.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, | English | Home Page | Category: Computing | 201 Views, 14175 Search Bots | 81 Words

Subscribe to Feed Burner | Browse | Archive
Hi, here's your problem today. This problem was recently asked by Amazon:

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.

Example:
Input: s = 7, nums = [2,3,1,2,4,3]
Output: 2
Explanation: the subarray [4,3] has the minimal length under the problem constraint.

Here is the method signature:


class Solution:
def minSubArrayLen(self, nums, s):
# Fill this in

print Solution().minSubArrayLen([2, 3, 1, 2, 4, 3], 7)
# 2
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, | English | Home Page | Cateogry: Computing | 201 Views, 14175 Search Bots | 81 Words Subscribe to Feed Burner

Related Articles

  1. CPU Utilization
  2. Autorun.inf Virus Protection
  3. Algorithm Interview Question: Find the Single Element in an Array of Duplicates
  4. Daily Interview Problem: Given two arrays, write a function to compute their intersection.
  5. PHP Unit Tests on VPS Server
  6. Daily Interview Problem: Min Range Needed to Sort
  7. Daily Interview Problem: Sort Colors
  8. Daily Interview Problem: Validate Binary Search Tree
  9. [Daily Problem] Remove k-th Last Element From Linked List
  10. YES!!

Comments (0)

    Be the first one to comment this page !


Page Edited: October 30 2020 14:21:09 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />