Implement `maxSumK(nums, k)` returning the largest sum of any contiguous subarray of length `k`.
+ 1 hidden test run on Submit.
A fixed sliding window updates the sum in O(1) per step for O(n) total.
Run your code to see results.