배고픈 개발자 이야기

[Python] SingleNumber 본문

알고리즘 문제/LEETCODE

[Python] SingleNumber

이융희 2021. 5. 6. 01:39
728x90

Easy난이도 Acceptence 66.8% 문제

 

주어진 input에 유니크한 숫자를 반환하는 문제로

파이썬 리스트의 count 함수를 사용, 갯수가 1개만 있는 원소를 반환하였다.

 

class Solution(object):
    def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        for num in nums:
            if nums.count(num) == 1:
                return num

'알고리즘 문제 > LEETCODE' 카테고리의 다른 글

[Python] TwoSum  (0) 2021.05.06
[Python] SymmetricTree  (0) 2021.05.06
[Python] MergeTwoSortedLists  (0) 2021.05.06
[Python] MaximumSubarray  (0) 2021.05.06
[Python] MaximumDepthofBinaryTree  (0) 2021.05.06
Comments