In a neighborhood, there are N
empty houses numbered from 1
to N
arranged in a line. Each day, starting from day 1
, one house will be occupied by residents. The sequence of occupied houses is given as a permutation of length N
. On the i
th day, the house with the number given by the i
th element of the permutation will be occupied.
The neighborhood will be considered happy if there is at least one set of consecutive occupied houses. On which day will the neighborhood become happy?
Note: A permutation of length N
is an array of N
integers where each element is between 1
and N
, with no repetitions.
Function Description
Complete the function solve
. This function takes the following 3 parameters and returns the required answer:
N
: Represents the number of housesM
: Represents the number of consecutive houses neededhouse
: Represents an array indicating the house that will be filled on each dayInput format for custom testing
Note: Use this input format if you are testing against custom input or writing code in a language where we don't provide boilerplate code.
N
denoting the number of houses.M
denoting the number of consecutive houses needed.house
denoting the house that will be filled on each day.Output format
Print a single integer representing the first day on which the neighborhood becomes happy.
Example 1:
Input: N = 3, M = 1, house = [3, 2, 1]
Output: 1
Explanation:tomtom's note: Not entirely sure about the explanation O.o Since the requirement is for at least one set of consecutive occupied houses and the first house to be occupied is house number 3, the neighborhood becomes happy on day 1.
🐣

input:
output: