Skip to content

Commit b841521

Browse files
authored
Update and rename linear search to linear search.py
1 parent f79f097 commit b841521

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: linear search renamed to linear search.py

+2-1
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)