CodingTest/[프로그래머스 LV.0]
프로그래머스 LV.0 - 중앙값 구하기[Python]
짱엉
2023. 1. 21. 23:36
728x90
def solution(array):
return sorted(array)[len(array) // 2]
728x90