Streamline previous content

This commit is contained in:
Alexander Hess 2019-11-20 11:00:24 +01:00
commit ca8fefdce1
13 changed files with 3595 additions and 1913 deletions

View file

@ -455,19 +455,8 @@
"\n",
" # answer to Q15.6\n",
" # ...\n",
" # ...\n",
" # ...\n",
" # ...\n",
" # ...\n",
" # ...\n",
" # ...\n",
" # ...\n",
" # ...\n",
" # ...\n",
" # ...\n",
"\n",
" # answer to Q15.7\n",
" # ...\n",
" # ..."
]
},
@ -543,7 +532,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Pythonic Re-Factoring"
"#### Pythonic Refactoring"
]
},
{
@ -569,7 +558,6 @@
" # ...\n",
"\n",
" # answer to Q15.10\n",
" # ...\n",
" # ..."
]
},
@ -726,7 +714,8 @@
"metadata": {},
"outputs": [],
"source": [
"\n"
"for ... in ...:\n",
" ..."
]
},
{
@ -811,9 +800,9 @@
" if offset is not None:\n",
" count += offset\n",
"\n",
" hanoi_ordered(..., offset=offset) # <- answer to Q15.18 between the ()\n",
" # answer to Q15.18\n",
" hanoi_ordered(..., offset=count) # <- answer to Q15.18 between the ()"
" hanoi_ordered(..., offset=offset) # <- answer to Q15.18\n",
" # ... <- answer to Q15.18\n",
" hanoi_ordered(..., offset=count) # <- answer to Q15.18"
]
},
{