728x90
<문제 링크>
https://leetcode.com/problems/search-insert-position/
<문제 풀이>
1. 정렬된 배열에 값을 넣으면 그 값에 대한 인덱스를 찾아주는 파이썬 라이브러리 사용
<코드>
from bisect import bisect_left
class Solution:
def searchInsert(self, nums: List[int], target: int) -> int:
return bisect_left(nums,target)
<고쳐야 할 점>
- bisect 완벽하게 외우기!!
'두두의 알고리즘 > 문제' 카테고리의 다른 글
[정렬] 릿코드 Medium 189 'Rotate Array' (Python) (0) | 2022.01.12 |
---|---|
[정렬] 릿코드 Easy 977 'Squares of a Sorted Array' (Python) (0) | 2022.01.12 |
[이분탐색] 릿코드 Easy 278 'First Bad Version' (Python) (0) | 2022.01.11 |
[이분탐색] 릿코드 Easy 704 'Binary Search' (Python) (0) | 2022.01.10 |
[순열과 조합] 백준 1759번 '암호 만들기' (Python) (0) | 2021.12.22 |