removed my code from challenge

This commit is contained in:
wdonahoe 2015-07-09 09:10:48 -04:00
parent 7ffe77b236
commit 47750576ba

View File

@ -70,37 +70,15 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"def make_order_list(list_in):\n",
" order_list = []\n",
" for item in list_in:\n",
" if item not in order_list:\n",
" order_list.append(item)\n",
" return order_list\n",
"\n",
"def group_ordered(list_in):\n",
" if list_in is None:\n",
" return None\n",
" order_list = make_order_list(list_in)\n",
" current = 0\n",
" for item in order_list:\n",
" search = current + 1\n",
" while True:\n",
" try:\n",
" if list_in[search] != item:\n",
" search += 1\n",
" else:\n",
" current += 1\n",
" list_in[current], list_in[search] = list_in[search], list_in[current]\n",
" search += 1\n",
" except IndexError:\n",
" break\n",
" return list_in"
" # TODO: Implement me\n",
" pass"
]
},
{