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