Find the Median

  • + 0 comments

    Here is my one line Python solution! I'm suprised with how this challenge is worth 35 points when you can solve it in one line!

    def findMedian(arr):
        return sorted(arr)[len(arr) // 2]