def median_aggregation(x: List[float]) -> float: return median2(x)
def median_aggregation(x): return median2(x)