Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 잇츠디모
- LeetCode
- binary search
- 상가수익률계산기
- 알고리즘풀이
- 파이썬릿코드풀기
- 파이썬알고리즘
- python sorted
- 파이썬 알고리즘
- 릿코드 파이썬
- python Leetcode
- 릿코드풀기
- 릿코드 풀기
- python 알고리즘
- 파이썬 프로그래머스
- 파이썬 릿코드
- 파이썬알고리즘풀기
- python priority queue
- 코틀린기초
- 파이썬 알고리즘 풀기
- leetcode 풀기
- 릿코드
- leetcode풀이
- python zip_longest
- 파이썬릿코드
- python xor
- leetcode풀기
- 릿코드풀이
- 알고리즘풀기
- python 릿코드
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 461. Hamming Distance 본문
반응형
461. Hamming Distance
문제)
솔루션1)
- xor 연산을 취한 후 비트연산
class Solution:
def hammingDistance(self, x: int, y: int) -> int:
xor = x ^ y
return sum((xor>>i & 1) for i in range(31))
솔루션2)
- xor 연산을 취한 후 내장함수 bin()을 사용해서 이진수 문자열로 변환 후 1을 셈
class Solution:
def hammingDistance(self, x: int, y: int) -> int:
xor = x^y
return bin(xor).count('1')
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 771. Jewels and Stones (0) | 2021.10.29 |
---|---|
LeetCode 풀기 - 226. Invert Binary Tree (0) | 2021.10.29 |
LeetCode 풀기 - 1684. Count the Number of Consistent Strings (0) | 2021.10.26 |
LeetCode 풀이 - 1588. Sum of All Odd Length Subarrays (0) | 2021.10.25 |
LeetCode 풀이 - 1512. Number of Good Pairs (0) | 2021.10.21 |
Comments