Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You may assume NO duplicates in the array.
Example
[1,3,5,6], 5 → 2
[1,3,5,6], 2 → 1
[1,3,5,6], 7 → 4
[1,3,5,6], 0 → 0
Solution
note: 做比较的时候尽量把target放到右边比较. 如果三段关系需要使用if elif else, 变形题目, 插入位置也决定了
Last updated
Was this helpful?