Search Insert Position - LeetCode
The problem is taken from 35. Search Insert Position.
Approach
The solution is very straight forward. We need to do binary search on the given array and try to find the target value. But the catch here is, if the target value is not found in the arr...
suraj26.hashnode.dev2 min read