subarray
RU: подмассив
A contiguous slice of an array defined by a start and end index, containing only elements that are adjacent in the original array. Unlike a subsequence, elements in a subarray cannot be skipped. Many problems — such as maximum sum and fixed-length window queries — target subarrays specifically because contiguity enables O(n) prefix-sum or sliding-window solutions.