From 2e5ed3c2f2f40c08295e11a01c8f8f5f97f7d71b Mon Sep 17 00:00:00 2001 From: toshibalone512 <143947745+toshibalone512@users.noreply.github.com> Date: Sun, 4 Aug 2024 09:28:31 +0530 Subject: [PATCH] add comment --- 5. Lists/Easy/9. Linear Seach/optimal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/5. Lists/Easy/9. Linear Seach/optimal.py b/5. Lists/Easy/9. Linear Seach/optimal.py index bf2f3c4..27fe293 100644 --- a/5. Lists/Easy/9. Linear Seach/optimal.py +++ b/5. Lists/Easy/9. Linear Seach/optimal.py @@ -1,6 +1,6 @@ -#This is a linear search code with time complexity o(n) +# This is a linear search code with time complexity o(n) # :') - +# testing def linearSearch(n: int, num: int, arr: [int]) -> int: for i in range(0, len(arr)): if arr[i] == num: