Source: 📖 Problem Solving with Algorithms and Data Structures using Python 6.3
Date: 2021-11-01
A sequential search algorithm goes through each item in a collection in order and returns True
or False
if a particular item was found. The algorithms stops when either the item is found, or when it runs out of items to traverse in the collection. It has a \(O(n)\) runtime function.