LeetCode-Search Insert Position
2018-10-17 本文已影响0人
你说我对钱一往情深
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:
Input: [1,3,5,6], 5
Output: 2
Solution 1:
class Solution(object):
def searchInsert(self, nums, target):
if target in nums:
loc = nums.index(target)
else:
nums.insert(0,target)
nums1 = sorted(nums)
loc = nums1.index(target)
return(loc)
Solution 2:
class Solution(object):
def searchInsert(self, nums, target):
for i in range(len(nums)):
if nums[i] >= target:
return i
return i+1