Skip to content

Commit

Permalink
fix trailing whithespace NITSkmOS#7
Browse files Browse the repository at this point in the history
  • Loading branch information
flamespt authored and sangamcse committed Sep 30, 2018
1 parent 55a409a commit 61fea83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion insertion_sort/Python/insertion_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ def insertion_sort(arr):
:param arr: A list of element to sort.
"""
for slot in range(1, len(arr)):
for slot in range(1, len(arr)):
value = arr[slot]
test_slot = slot - 1
while test_slot > -1 and arr[test_slot] > value:
Expand Down

0 comments on commit 61fea83

Please sign in to comment.