Repository where I mostly put random python scripts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
118 B

5 years ago
  1. def linear_search(arr, element):
  2. for i in arr:
  3. if i == element:
  4. return True
  5. return False