8000 Fix simple typo: taget -> target (#591) · LeetCode-Interview/algorithms@a9aad22 · GitHub
[go: up one dir, main page]

Skip to content

Commit a9aad22

Browse files
timgates42keon
authored andcommitted
Fix simple typo: taget -> target (keon#591)
1 parent 93b14ab commit a9aad22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/search/jump_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def jump_search(arr,target):
1616
block_prev = 0
1717
block= block_size
1818

19-
# return -1 means that array doesn't contain taget value
19+
# return -1 means that array doesn't contain target value
2020
# find block that contains target value
2121

2222
if arr[n - 1] < target:

0 commit comments

Comments
 (0)
0