검색은 말 그대로 간단하다. 어떤 배열안에 해당하는 데이터가 있는지 없는지 확인하기 위한 알고리즘이다. 1. 선형 검색 알고리즘 (linear search) 검색을 하기 위한 가장 단순한 사고방식의 알고리즘이라고 생각하면 된다. 만약 전체의 집합이 있고 찾고자하는 값이 있다면 전체 집합을 전부 다 살펴보면 된다. Write a function called linearSearch which accepts an array and a value, and returns the index at which the value exists. If the value does not exist in the array, return -1. linearSearch([10, 15, 20, 25, 30], 15) // 1 lin..