Skip to content

Commit 43e073d

Browse files
committed
spell check
1 parent 0b1b3ec commit 43e073d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"cSpell.words": ["blit"]
3+
}

programs/08/program.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ def linear_search(arr, x):
1212
print(linear_search([1, 2, 3, 4, 5], 5))
1313

1414
# make above function shorter
15-
def linearr_search(arr, x):
15+
def linear_list_search(arr, x):
1616
return x in arr, arr.index(x)
1717

1818

19-
print(linearr_search([1, 2, 3, 4, 5], 5))
19+
print(linear_list_search([1, 2, 3, 4, 5], 5))

0 commit comments

Comments
 (0)