Mark As Completed Discussion

Build your intuition. Fill in the missing part by typing it in.

Linear search is a simple searching algorithm that checks each element of a given array ____ until it finds a match with the target value.

Linear search has a time complexity of O(n), where n is the number of elements in the array.

Write the missing line below.