Linear Search
Linear search, also known as sequential search is used to find a specific value withing an array or a list. It checks each element one by one until desired element is found and end of the list is reached.
How it works ?
Start from first element in t...
juhilee.hashnode.dev1 min read