Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Uncategorized category for Median by pyos
checkio = lambda d: (lambda s: (s[len(s) // 2] + s[len(s) // 2 - 1 + len(s) % 2]) / 2)(sorted(d))
June 2, 2013
Comments: