Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 574 Bytes

Day21_LeetCode35.md

File metadata and controls

13 lines (10 loc) · 574 Bytes

Day 21: LeetCode 35 [Search Insert Position]

Problem Description: Given a sorted array of distinct integers 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 must write an algorithm with O(log n) runtime complexity. Example 1: Input: nums = [1,3,5,6], target = 5 Output: 2

Link to LeetCode Problem: https://leetcode.com/problems/search-insert-position/description/

image