Skip to content

Commit c8a51c8

Browse files
Merge pull request geekcomputers#1759 from sayampradhan/patch-55
Update and rename linear search to linear search.py
2 parents 46784c8 + b841521 commit c8a51c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

linear search renamed to linear search.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Author : ShankRoy
1+
#Author : ShankRoy
2+
23
def linearsearch(arr, x):
34
for i in range(len(arr)):
45
if arr[i] == x:

0 commit comments

Comments
 (0)