class Solution:

    def searchInsert(self, nums: List[int], target: int) -> int:

        return bisect_left(nums,target)


api 사용법 가이드 ㅇㅈ합니다.