▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/sort-the-people/ Sort the People - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 길이가 같은 두 리스트 names, heights가 주어진다. names[i] 의 키는 heights[i] 다. 키가 큰 순서대로 정렬해서 이름만 리스트로 반환하는 문제. class Solution: def sortPeople(self, names: List[str], h..