Find the Median

  • + 0 comments

    def findMedian(arr): n=len(arr) arr.sort() return arr[n//2]