파이썬에서 비교함수 넣어주는 방법 from functools import cmp_to_key 해준 후 sorted(리스트, key = cmp_to_key(비교함수)
from functools import cmp_to_key
sorted(리스트, key = cmp_to_key(비교함수)