728x90
<문제 링크>
https://leetcode.com/problems/number-of-1-bits/
<문제 풀이>
- 정수로 들어온 값을 2진수로 바꿔주고 1의 개수를 센다
<코드>
class Solution:
def hammingWeight(self, n: int) -> int:
return str(bin(n)).count('1')
'두두의 알고리즘 > 문제' 카테고리의 다른 글
[동적계획법] 릿코드 Easy 70 'Climbing Stairs' (Python) (0) | 2022.01.25 |
---|---|
[비트연산] 릿코드 Easy 190 'Reverse Bits' (Python) (0) | 2022.01.23 |
[동적계획법] 릿코드 Medium 120 'Triangle' (Python) (0) | 2022.01.21 |
[BFS] 릿코드 Medium 695 'Max Area of Island' (Python) (0) | 2022.01.18 |
[BFS] 릿코드 Easy 733 'Flood Fill' (Python) (0) | 2022.01.17 |