Find the Median

  • + 0 comments

    simple python solve

    **

    def findMedian(arr):

        arr.sort()
    
        return arr[len(arr)//2]
        **