Linear Search
Linear search or sequential search is a method for finding a value whithin a list. This algorithm sequentially checks each element of the list for the target value until a match is found or until all the elements have been searched.
This algorithm has the time complexity of O(n) since in worst case scenario it'll check each element once.