Find the Smallest Subarray with Sum Greater Than S
Array: [2, 2, 1, 5, 3, 0] Target Sum (S): 7
Goal: Find the smallest subarray whose sum is greater than 7
Step 1: Expand window by moving right pointer until sum > target
Step 2: Contract window by moving left pointer while sum > target
Step 3: Track the minimum window size found