LeetCode - Problems - Algorithms - 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. My Solution (C#) nums에 target을 insert한다고 가정 했을 때, insert 되는 위치를 return하는 문제. nums는 오름차순으로 정렬되어있고, target 또한 오름차순에 맞게 insert 되어야 한다는 조건이 있다. ..