leetcode#136 Single Number

정은경·2022년 6월 12일
0

알고리즘

목록 보기
81/125

1. 문제

2. 나의 풀이

  • 딕셔너리를 이용해서 출현횟수를 카운트
class Solution(object):
    def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        
        memory = {}

        for num in nums:
            if memory.get(num):
                memory[num] += 1
                continue
                
            memory[num] = 1
        
        for key in memory.keys():
            if memory[key] == 1:
                return key

3. 남의 풀이

profile
#의식의흐름 #순간순간 #생각의스냅샷

0개의 댓글