diff --git a/arrays-strings/permutation.ipynb b/arrays-strings/permutation.ipynb index 266bb2f..f68a98e 100644 --- a/arrays-strings/permutation.ipynb +++ b/arrays-strings/permutation.ipynb @@ -45,8 +45,6 @@ "source": [ "## Test Cases\n", "\n", - "*Identifying and running through general and edge cases are important. You generally will not be asked to write a unit test like what is shown below.*\n", - "\n", "* One or more empty strings -> False\n", "* 'Nib', 'bin' -> False\n", "* 'act', 'cat' -> True\n", @@ -157,6 +155,13 @@ "## Unit Test" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "*It is important to identify and run through general and edge cases from the [Test Cases](#Test-Cases) section by hand. You generally will not be asked to write a unit test like what is shown below.*" + ] + }, { "cell_type": "code", "execution_count": 3,