[Algorithm] 이분탐색 (Binary Search) - 변형 1. Lower bound - 배열에 해당 값이 두개 이상 존재하는 경우 가장 앞선 인덱스를 반환하도록 한다. def binary_search_lo(given_data,target): start = 0 end = len(given_data)-1 while start Data structure & Algorithm 2024.01.04