1356. Sort Integers by The Number of 1 Bits 배열의 각 숫자를 이진법으로 변환했을 때, 가지고 있는 1의 개수 별로 정렬하는 문제이다.
class Solution: def sortByBits(self, arr: List[int]) -> List[int]: return sorted(arr, key = lambda x : (bin(x).count('1'), x))