A simple searching algorithm that checks every element in the list sequentially until the target is found or the list ends.
Linear search is a simple searching algorithm that sequentially checks each element of the list until a match is found or the whole list has been searched. It works on both sorted and unsorted arrays, making it very versatile reportWindow less efficient than binary search for sorted data.