Rahul and Minimum Subarray Challenge

Rahul, who is passionate about programming, is learning about arrays and lists. He faces a challenging problem to determine the smallest subarray length in a given array 'ARR' of size 'N', where the subarray's sum exceeds a specified value 'X'. If such a subarray does not exist, the function should return 0.

Example:

Input:
ARR = [1, 2, 21, 7, 6, 12], X = 23
Output:
2
Explanation:

The smallest subarray with a sum greater than 'X' is [21, 7], with a length of 2. Although there are other subarrays, such as [1, 2, 21] and [7, 6, 12], this is the smallest possible.

Constraints:

  • 1 ≤ T ≤ 10^2
  • 1 ≤ N ≤ 10^3
  • 1 ≤ X ≤ 10^9
  • 0 ≤ A[i] ≤ 10^9
AnswerBot
1y

The problem is to find the length of the smallest subarray in a given array with its sum greater than a given value.

  • Iterate through the array and keep track of the current subarray sum

  • If the current s...read more

Help your peers!
Add answer anonymously...
Decimal Point Analytics Software Developer Intern Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter