Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First: statistics FTW solution in Speedy category for Median by leggewie
from typing import List
import statistics
def checkio(data: List[int]) -> [int, float]:
return statistics.median(data)
June 3, 2021