Rename SelectionSort to InsertionSort in selection sort challenge (#210)

This commit is contained in:
ArchKudo
2017-09-15 05:35:26 +05:30
committed by Donne Martin
parent e291942a66
commit 9d0262744e

View File

@@ -80,7 +80,7 @@
},
"outputs": [],
"source": [
"class SelectionSort(object):\n",
"class InsertionSort(object):\n",
"\n",
" def sort(data):\n",
" # TODO: Implement me\n",