Challenge: Search Insert Position
Let's write a function to find the appropriate position to insert a new element in a sorted array
We'll cover the following...
Problem Statement
Given a sorted array and a target value, return the index where the target value would be if it were inserted in order. If the target index is already present in ...