leetcode#35 Search Insert Position

정은경·2022년 5월 26일
0

알고리즘

목록 보기
59/125

1. 문제

2. 나의 풀이

2-1.

class Solution(object):
    def searchInsert(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: int
        """
        if nums.count(target) > 0:
            return nums.index(target)
        for (index, num) in enumerate(nums):
            if num < target:
                continue
            return index
        return len(nums)

3. 남의 풀이

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

0개의 댓글