Skip to content

Commit

Permalink
Trying to pass test 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ABarpanda committed Oct 30, 2023
1 parent 5276500 commit 8a6c406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Algorithms/Searching/LinearSearch/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ LinearSearch( A : Array of items, Target : item to be searched)
return i;
}
}

return -1;
}

```
## Python
```py
def linearSearch(Array,target):
for i in range(0,len(Array)):
if Array[i] == target:
Expand Down

0 comments on commit 8a6c406

Please sign in to comment.