Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Median by oba-ba
from typing import List
import statistics
def checkio(data: List[int]) -> [int, float]:
return statistics.median(data)
May 13, 2019
Comments: