leetcode#27 Remove Element

정은경·2022년 5월 26일
0

알고리즘

목록 보기
57/125

1. 문제

2. 나의 풀이

2-1. 리스트에서 원소 삭제하기

class Solution(object):
    def removeElement(self, nums, val):
        """
        :type nums: List[int]
        :type val: int
        :rtype: int
        """
        
        val_appearance_count = nums.count(val)
        for _ in range(val_appearance_count):
            nums.remove(val)
        return len(nums)
                
  • 문제 설명만 보고는 이해가 안되어서, 아래의 풀이를 보고 문제를 이해함 -_-;;;

3. 남의 풀이

3-1.

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

0개의 댓글