Computer Science, asked by prajaktapokam33, 7 months ago

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"

Answers

Answered by vedapriyagudipati
10

Answer:

qwertyuiopasdfghjklzxcvbnm

Explanation:

qwertyuiopasdfghjklzxcvbnm

Similar questions