Find the Median

  • + 0 comments
    def findMedian(arr):
        arr.sort()
        return arr[len(arr)//2]