diff --git a/02_activities/assignments/assignment_1.ipynb b/02_activities/assignments/assignment_1.ipynb index 6d7a9ee2e..d882c4a2a 100644 --- a/02_activities/assignments/assignment_1.ipynb +++ b/02_activities/assignments/assignment_1.ipynb @@ -56,7 +56,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -65,13 +65,13 @@ "True" ] }, - "execution_count": 27, + "execution_count": 47, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# For testing purposes, we will write our code in the function\n", + "# resumbitting after a merge reversal. For testing purposes, we will write our code in the function\n", "def anagram_checker(word_a, word_b):\n", " #converted both inputs to lowercase so both words are no longer case sensitive \n", " word_a = word_a.lower()\n", @@ -79,7 +79,7 @@ " #sort the characters of both words alphabetically\n", " sorted_a = sorted(word_a)\n", " sorted_b = sorted(word_b)\n", - " #returns a value of 'True' if both sorted words are equal (it's an anagram), if not, returns a value of 'False' (not an anagram)\n", + " #returns a value of 'True' if both sorted words are equal (it's an anagram). If not, returns a value of 'False' (not an anagram)\n", " return sorted_a == sorted_b\n", "# Run your code to check using the words below:\n", "anagram_checker(\"Silent\", \"listen\")"