Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 5. Quick_Sort.ipynb
  • Loading branch information
kehsihba19 authored Oct 1, 2019
commit cacb487a2963594bda91650548edfd69719ce23a
2 changes: 1 addition & 1 deletion Sorting/5. Quick_Sort.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
" # If current element is smaller than the pivot\n",
" \n",
" if array[j] < pivot:\n",
" # increment index of smaller element\n"
" # increment index of smaller element\n",
" \n",
" i += 1\n",
" array[i], array[j] = array[j], array[i]\n",
Expand Down