[LeetCode] 191. Number of 1 Bits 최대 1 분 소요 Python class Solution: def hammingWeight(self, n: int) -> int: return bin(n).count('1') 공유하기 Twitter Facebook LinkedIn 이전 다음 댓글남기기
댓글남기기