toy problem 10
문제 오름차순 정렬된 정수의 배열(arr)과 정수(target)를 입력받아 target의 인덱스를 리턴해야 합니다. 입력 let output = binarySearch([0, 1, 2, 3, 4, 5, 6], 2); console.log(output); // --> 2 output = binarySearch([4, 5, 6, 9], 100); console.log(output); // --> -1 const binarySearch = function (arr, target) { // TODO : 여기에 코드를 작성합니다. let low = 0 // 첫번째 인덱스 let high = arr.length - 1 // 마지막 인덱스 while(low 3으로 업데이트 된다. }else{ high = mid - ..