Company: Vmock
Difficulty: medium
Array Challenge Have the function ArrayChallenge(arr) read the array of numbers stored in arr which will contain a sliding window size, N, as the first element in the array and the rest will be a list of numbers. Your program should return the Moving Median for each element based on the element and its N-1 predecessors, where N is the sliding window size. The final output should be a string with the moving median corresponding to each entry in the original array separated by commas. Note that for the first few elements (until the window size is reached), the median is computed on a smaller number of entries. For example: if arr is [3, 1, 3, 5, 10, 6, 4, 3, 1] then your program should output \"1,2,3,5,6,6,4,3\" Input Format An array arr where the first element is the sliding window size N, followed by a list of numbers. Output Format A string containing the moving medians separated by commas. Constraints The sliding window size N will always be less than or equal to the length of the ar