From e488578270d12a57a026f0ca6aae0e91addac714 Mon Sep 17 00:00:00 2001 From: hayun120 Date: Wed, 11 Mar 2026 16:37:02 -0400 Subject: [PATCH 1/2] Completed assignment 1 --- 01_materials/slides/04_strings.ipynb | 15 ++- 02_activities/assignments/assignment_1.ipynb | 102 ++++++++++++++++--- 2 files changed, 100 insertions(+), 17 deletions(-) diff --git a/01_materials/slides/04_strings.ipynb b/01_materials/slides/04_strings.ipynb index 8641eeb3e..740f77476 100644 --- a/01_materials/slides/04_strings.ipynb +++ b/01_materials/slides/04_strings.ipynb @@ -185,9 +185,18 @@ "metadata": {}, "outputs": [], "source": [ - "# Your code goes here" + "# Your code goes here\n", + "\"Let/'s see if this works now\"" ] }, + { + "cell_type": "code", + "execution_count": null, + "id": "bcaf5fc9", + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "id": "b19547d6", @@ -806,7 +815,7 @@ "toc_visible": true }, "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "python-env (3.11.14)", "language": "python", "name": "python3" }, @@ -820,7 +829,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.8" + "version": "3.11.14" }, "rise": { "scroll": true, diff --git a/02_activities/assignments/assignment_1.ipynb b/02_activities/assignments/assignment_1.ipynb index 2dca19d0b..373befc86 100644 --- a/02_activities/assignments/assignment_1.ipynb +++ b/02_activities/assignments/assignment_1.ipynb @@ -56,13 +56,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# For testing purposes, we will write our code in the function\n", "def anagram_checker(word_a, word_b):\n", " # Your code here\n", + " if sorted(word_a.lower()) == sorted(word_b.lower().strip()):\n", + " return True\n", + " else:\n", + " return False\n", "\n", "# Run your code to check using the words below:\n", "anagram_checker(\"Silent\", \"listen\")" @@ -70,18 +85,40 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "anagram_checker(\"Silent\", \"Night\")" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "anagram_checker(\"night\", \"Thing\")" ] @@ -97,12 +134,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "def anagram_checker(word_a, word_b, is_case_sensitive):\n", " # Modify your existing code here\n", + " if not is_case_sensitive:\n", + " word_a = word_a.lower()\n", + " word_b = word_b.lower()\n", + " return sorted(word_a) == sorted(word_b)\n", "\n", "# Run your code to check using the words below:\n", "anagram_checker(\"Silent\", \"listen\", False) # True" @@ -110,18 +162,40 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "anagram_checker(\"Silent\", \"listen\", True) # False" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "anagram_checker(\"Silent\", \"Listen\", True) # False" ] @@ -139,7 +213,7 @@ ], "metadata": { "kernelspec": { - "display_name": "new-learner", + "display_name": "python-env (3.11.14)", "language": "python", "name": "python3" }, @@ -153,7 +227,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.8" + "version": "3.11.14" } }, "nbformat": 4, From b00c281d8bbcfda1a225f0de7da6b64dfc2ed084 Mon Sep 17 00:00:00 2001 From: hayun120 Date: Wed, 11 Mar 2026 16:43:05 -0400 Subject: [PATCH 2/2] Notes I included did not appear in my previous push. Trying again. --- 02_activities/assignments/assignment_1.ipynb | 34 +++++++++++--------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/02_activities/assignments/assignment_1.ipynb b/02_activities/assignments/assignment_1.ipynb index 373befc86..3f82563a6 100644 --- a/02_activities/assignments/assignment_1.ipynb +++ b/02_activities/assignments/assignment_1.ipynb @@ -56,7 +56,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -65,7 +65,7 @@ "True" ] }, - "execution_count": 5, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -74,10 +74,11 @@ "# For testing purposes, we will write our code in the function\n", "def anagram_checker(word_a, word_b):\n", " # Your code here\n", - " if sorted(word_a.lower()) == sorted(word_b.lower().strip()):\n", - " return True\n", + " if sorted(word_a.lower()) == sorted(word_b.lower()): # use sorted() function to return list with sorted letters in alphabetical order; \n", + " # use .lower() function since we assume that upercase letters are the same as lowercase for this part\n", + " return True # if word a and word b are anagrams, the sorted letters should be the same\n", " else:\n", - " return False\n", + " return False # if sorted letters are not the same, word a and word b are not anagrams\n", "\n", "# Run your code to check using the words below:\n", "anagram_checker(\"Silent\", \"listen\")" @@ -85,7 +86,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -94,7 +95,7 @@ "False" ] }, - "execution_count": 6, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } @@ -105,7 +106,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -114,7 +115,7 @@ "True" ] }, - "execution_count": 7, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } @@ -134,7 +135,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -143,7 +144,7 @@ "True" ] }, - "execution_count": 8, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } @@ -151,10 +152,11 @@ "source": [ "def anagram_checker(word_a, word_b, is_case_sensitive):\n", " # Modify your existing code here\n", - " if not is_case_sensitive:\n", + " if not is_case_sensitive: # use the 'not' operator to say when the two words are not case sensitive, need to standardize the strings for comparison:\n", " word_a = word_a.lower()\n", " word_b = word_b.lower()\n", " return sorted(word_a) == sorted(word_b)\n", + " # If the sorted lists are identical, the words contain the exact same characters, thus word a and word b are anagrams.\n", "\n", "# Run your code to check using the words below:\n", "anagram_checker(\"Silent\", \"listen\", False) # True" @@ -162,7 +164,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "metadata": {}, "outputs": [ { @@ -171,7 +173,7 @@ "False" ] }, - "execution_count": 9, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } @@ -182,7 +184,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 11, "metadata": {}, "outputs": [ { @@ -191,7 +193,7 @@ "False" ] }, - "execution_count": 10, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" }