Second Median solution in Clear category for Median by Wakko_Warner
def checkio(data): from statistics import median return median(data)
Dec. 3, 2020