Challenge: Search Position
Let's write a function to find the appropriate position to insert a new element in a sorted list.
We'll cover the following...
Problem statement
Given a sorted list and a target value, return the index of the target value if the value is present in the list. If the value is not present, return the index at ...