given a larger integer buffer/array (say size, x), window size (say, n) and a number (say, k). Windows starts from the 1stelement and keeps shifting right by one element. The objective is to find the minimum k numbers present in each window. This is commonly know as sliding window problem or algorithm.