6 lines
156 B
Python
6 lines
156 B
Python
# медиана
|
|
def find_median(x):
|
|
if len(x) % 2 == 0:
|
|
return (x[len(x) // 2] + x[len(x) // 2 -1]) / 2
|
|
else:
|
|
return x[len(x) // 2] |