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
- python xor
- 알고리즘풀기
- LeetCode
- 상가수익률계산기
- python Leetcode
- python priority queue
- python sorted
- 릿코드 풀기
- python 릿코드
- 릿코드풀이
- python 알고리즘
- 릿코드
- 파이썬릿코드
- 파이썬릿코드풀기
- leetcode풀이
- 코틀린기초
- 잇츠디모
- 릿코드풀기
- leetcode풀기
- 파이썬 알고리즘 풀기
- 파이썬 프로그래머스
- 알고리즘풀이
- leetcode 풀기
- binary search
- 파이썬알고리즘풀기
- python zip_longest
- 릿코드 파이썬
- 파이썬 릿코드
- 파이썬 알고리즘
- 파이썬알고리즘
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 136. Single Number 본문
반응형
https://leetcode.com/problems/single-number/
문제)
풀이 전략)
- XOR 교환법칙 결합법칙 이용
- A^A = 0
- A^0=A
- A^A^B^B^C=0^0^A=A
솔루션1)
class Solution:
def singleNumber(self, nums: List[int]) -> int:
# 모든 값을 xor 취하면 하나만 남음
ret = 0
for num in nums:
ret ^= num
return ret
솔루션2)
class Solution:
def singleNumber(self, nums: List[int]) -> int:
return reduce(lambda x,y : x^y, nums)
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 231. Power of Two (0) | 2021.11.02 |
---|---|
LeetCode 풀기 - 20. Valid Parentheses (0) | 2021.10.31 |
LeetCode 풀기 - 771. Jewels and Stones (0) | 2021.10.29 |
LeetCode 풀기 - 226. Invert Binary Tree (0) | 2021.10.29 |
LeetCode 풀기 - 461. Hamming Distance (0) | 2021.10.28 |
Comments