Skip to content

Commit bbc602d

Browse files
committed
Assignment-1
1 parent e5ddd1b commit bbc602d

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

02_activities/assignments/assignment_1.ipynb

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
},
8181
{
8282
"cell_type": "code",
83-
"execution_count": 22,
83+
"execution_count": null,
8484
"metadata": {},
8585
"outputs": [],
8686
"source": [
@@ -105,9 +105,7 @@
105105
" queue.append(node.left)\n",
106106
" if node.right:\n",
107107
" queue.append(node.right)\n",
108-
" return -1\n",
109-
"\n",
110-
"\n"
108+
" return -1"
111109
]
112110
},
113111
{
@@ -270,7 +268,7 @@
270268
},
271269
{
272270
"cell_type": "code",
273-
"execution_count": 30,
271+
"execution_count": null,
274272
"metadata": {},
275273
"outputs": [
276274
{
@@ -287,7 +285,7 @@
287285
"root.left.left = TreeNode(7)\n",
288286
"root.left.left.left = TreeNode(8)\n",
289287
"\n",
290-
"print(path_to_leaves(root))\n"
288+
"print(path_to_leaves(root))"
291289
]
292290
},
293291
{
@@ -538,7 +536,8 @@
538536
"Step 1: Create a boolean array to track seen number \n",
539537
"Step 2: Mark the numbers that appear in the input list\n",
540538
"step3: Collect the missing numbers\n",
541-
"step4: Edge case Handling\n"
539+
"step4: Edge case Handling\n",
540+
"."
542541
]
543542
},
544543
{

0 commit comments

Comments
 (0)