Guest User

Untitled

a guest
Nov 21st, 2019
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle value.
  2.  
  3. Examples:
  4. [2,3,4] , the median is 3
  5.  
  6. [2,3], the median is (2 + 3) / 2 = 2.5
  7.  
  8. Given an array nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k numbers in the window. Each time the sliding window moves right by one position. Your job is to output the median array for each window in the original array.
Add Comment
Please, Sign In to add comment