Skip to content

Commit a0a7bc0

Browse files
authored
Merge pull request #7 from UofT-DSI/restructure-repo
Restructure repo
2 parents 6e50191 + c7323a4 commit a0a7bc0

File tree

115 files changed

+4678
-21217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+4678
-21217
lines changed

.Rhistory

Whitespace-only changes.

01_slides/1_motivation_big_o.ipynb

+594
Large diffs are not rendered by default.

01_slides/2_ds_search_sort.ipynb

+441
Large diffs are not rendered by default.

01_slides/3_recursion.ipynb

+600
Large diffs are not rendered by default.

01_slides/4_recursive_ds.ipynb

+755
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.

02_assignments/assignment_1.ipynb

+337
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,337 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Coding Problems\n",
8+
"\n",
9+
"## Objective\n",
10+
"\n",
11+
"This assignment aims to demonstrate how to study a data structures or algorithms question in depth to prepare for an industry coding interview. Leetcode is a popular coding practice site that many use to practice for technical interviews. Like behavioral interviews, it's important to practice and keep your skills sharp.\n",
12+
"\n",
13+
"## Group Size\n",
14+
"\n",
15+
"Please complete this individually.\n",
16+
"\n",
17+
"## Part 1:\n",
18+
"\n",
19+
"_*You will be assigned one of three problems based of your first name. Execute the code below, and that will tell you your assigned problem. Include the output as part of your submission (do not clear the output). The problems are based-off problems from Leetcode.*_\n"
20+
]
21+
},
22+
{
23+
"cell_type": "code",
24+
"execution_count": null,
25+
"metadata": {},
26+
"outputs": [],
27+
"source": [
28+
"print((hash('your first name') % 3) + 1)"
29+
]
30+
},
31+
{
32+
"cell_type": "markdown",
33+
"metadata": {},
34+
"source": [
35+
"<details>\n",
36+
" <summary>Question 1</summary>\n",
37+
"\n",
38+
" # Question One: Check Duplicates in Tree\n",
39+
"\n",
40+
" Given the `root` of a binary tree, check whether it is contains a duplicate value. If a duplicate exists, return the duplicate value. If there are multiple duplicates, return the one with the closest distance to the root. If no duplicate exists, return -1.\n",
41+
"\n",
42+
" ## Examples\n",
43+
"\n",
44+
" ### Example 1\n",
45+
"\n",
46+
" ![](images/q1_ex1.png \"Example 1\")\n",
47+
"\n",
48+
" Input: `root = [1, 2, 2, 3, 5, 6, 7]` *What traversal method is this?*\n",
49+
"\n",
50+
" Output: 2\n",
51+
"\n",
52+
" ### Example 2\n",
53+
"\n",
54+
" ![](images/q1_ex2.png \"Example 2\")\n",
55+
"\n",
56+
" Input: `root = [1, 10, 2, 3, 10, 12, 12]`\n",
57+
"\n",
58+
" Output: 10\n",
59+
"\n",
60+
" ### Example 3\n",
61+
"\n",
62+
" ![](images/q1_ex3.png \"Example 3\")\n",
63+
"\n",
64+
" Input: `root = [10, 9, 8, 7]`\n",
65+
"\n",
66+
" Output: -1\n",
67+
"\n",
68+
"</details>\n",
69+
"\n",
70+
"#### Starter Code for Question 1"
71+
]
72+
},
73+
{
74+
"cell_type": "code",
75+
"execution_count": null,
76+
"metadata": {},
77+
"outputs": [],
78+
"source": [
79+
"# Definition for a binary tree node.\n",
80+
"# class TreeNode(object):\n",
81+
"# def __init__(self, val = 0, left = None, right = None):\n",
82+
"# self.val = val\n",
83+
"# self.left = left\n",
84+
"# self.right = right\n",
85+
"def is_symmetric(root: TreeNode) -> int:\n",
86+
" # TODO"
87+
]
88+
},
89+
{
90+
"cell_type": "markdown",
91+
"metadata": {},
92+
"source": [
93+
"<details>\n",
94+
" <summary>Question 2</summary>\n",
95+
"\n",
96+
" # Question Two: Path to Leaves\n",
97+
"\n",
98+
" Given the `root` of a binary tree, return all root to leaf paths in any order.\n",
99+
"\n",
100+
" ## Examples\n",
101+
"\n",
102+
" ### Example 1\n",
103+
"\n",
104+
" ![](images/q1_ex1.png \"Example 1\")\n",
105+
"\n",
106+
" Input: `root = [1, 2, 2, 3, 5, 6, 7]` *What traversal method is this?*\n",
107+
"\n",
108+
" Output: [[1, 2, 3], [1, 2, 5], [1, 2, 6], [1, 2, 7]]\n",
109+
"\n",
110+
" ### Example 2\n",
111+
"\n",
112+
" ![](images/q1_ex3.png \"Example 2\")\n",
113+
"\n",
114+
" Input: `root = [10, 9, 8, 7]`\n",
115+
"\n",
116+
" Output: [[10, 7], [10, 9, 8]]\n",
117+
"\n",
118+
"</details>\n",
119+
"\n",
120+
"#### Starter Code for Question 2"
121+
]
122+
},
123+
{
124+
"cell_type": "code",
125+
"execution_count": null,
126+
"metadata": {},
127+
"outputs": [],
128+
"source": [
129+
"# Definition for a binary tree node.\n",
130+
"# class TreeNode(object):\n",
131+
"# def __init__(self, val = 0, left = None, right = None):\n",
132+
"# self.val = val\n",
133+
"# self.left = left\n",
134+
"# self.right = right\n",
135+
"def bt_path(root: TreeNode) -> List[List[int]]:\n",
136+
" # TODO"
137+
]
138+
},
139+
{
140+
"cell_type": "markdown",
141+
"metadata": {},
142+
"source": [
143+
"<details>\n",
144+
" <summary>Question 3</summary>\n",
145+
"\n",
146+
" # Question Three: Missing Number in Range\n",
147+
" \n",
148+
" You are given a list containing `n` integers in the range `[0, n]`. Return a list of numbers that are missing from the range `[0, n]` of the array. If there is no missing number, return -1. Note, all the integers in the list may not be unique.\n",
149+
" \n",
150+
" ## Examples\n",
151+
"\n",
152+
" ### Example 1\n",
153+
"\n",
154+
" Input: `lst = [0, 2]`\n",
155+
"\n",
156+
" Output: [1]\n",
157+
"\n",
158+
" ### Example 2\n",
159+
"\n",
160+
" Input: `lst = [5, 0, 1]`\n",
161+
"\n",
162+
" Output: [2, 3, 4]\n",
163+
"\n",
164+
" ### Example 3\n",
165+
"\n",
166+
" Input: `lst = [6, 8, 2, 3, 5, 7, 0, 1, 10]`\n",
167+
"\n",
168+
" Output: [4, 9]\n",
169+
"\n",
170+
"</details>\n",
171+
"\n",
172+
"#### Starter Code for Question 3\n"
173+
]
174+
},
175+
{
176+
"cell_type": "code",
177+
"execution_count": null,
178+
"metadata": {},
179+
"outputs": [],
180+
"source": [
181+
"def missing_num(nums: List) -> int:\n",
182+
" # TODO"
183+
]
184+
},
185+
{
186+
"cell_type": "markdown",
187+
"metadata": {},
188+
"source": [
189+
"\n",
190+
"## Part 2:\n",
191+
"\n",
192+
"- Paraphrase the problem in your own words\n"
193+
]
194+
},
195+
{
196+
"cell_type": "code",
197+
"execution_count": null,
198+
"metadata": {},
199+
"outputs": [],
200+
"source": [
201+
"# Your answer here"
202+
]
203+
},
204+
{
205+
"cell_type": "markdown",
206+
"metadata": {},
207+
"source": [
208+
"\n",
209+
"- In the .md file containing your problem, there are examples that illustrate how the code should work. Create 2 new examples that demonstrate you understand the problem.\n"
210+
]
211+
},
212+
{
213+
"cell_type": "code",
214+
"execution_count": null,
215+
"metadata": {},
216+
"outputs": [],
217+
"source": [
218+
"# Your answer here"
219+
]
220+
},
221+
{
222+
"cell_type": "markdown",
223+
"metadata": {},
224+
"source": [
225+
"\n",
226+
"- Code the solution to your assigned problem in Python (code chunk). Try to find the best time and space complexity solution!\n"
227+
]
228+
},
229+
{
230+
"cell_type": "code",
231+
"execution_count": null,
232+
"metadata": {},
233+
"outputs": [],
234+
"source": [
235+
"# Your answer here"
236+
]
237+
},
238+
{
239+
"cell_type": "markdown",
240+
"metadata": {},
241+
"source": [
242+
"\n",
243+
"- Explain why your solution works\n"
244+
]
245+
},
246+
{
247+
"cell_type": "code",
248+
"execution_count": null,
249+
"metadata": {},
250+
"outputs": [],
251+
"source": [
252+
"# Your answer here"
253+
]
254+
},
255+
{
256+
"cell_type": "markdown",
257+
"metadata": {},
258+
"source": [
259+
"\n",
260+
"- Explain the problem’s and space complexity\n"
261+
]
262+
},
263+
{
264+
"cell_type": "code",
265+
"execution_count": null,
266+
"metadata": {},
267+
"outputs": [],
268+
"source": [
269+
"# Your answer here"
270+
]
271+
},
272+
{
273+
"cell_type": "markdown",
274+
"metadata": {},
275+
"source": [
276+
"\n",
277+
"- Explain the thinking to an alternative solution (no coding required, but a classmate reading this should be able to code it up based off your text)\n"
278+
]
279+
},
280+
{
281+
"cell_type": "code",
282+
"execution_count": null,
283+
"metadata": {},
284+
"outputs": [],
285+
"source": [
286+
"# Your answer here"
287+
]
288+
},
289+
{
290+
"cell_type": "markdown",
291+
"metadata": {},
292+
"source": [
293+
"## Submission Requirements\n",
294+
"\n",
295+
"Create and submit a public GitHub repository with the following:\n",
296+
"\n",
297+
"- The PDF of the problem you have solved\n",
298+
"\n",
299+
"## Evaluation Criteria\n",
300+
"\n",
301+
"- Problem is accurately stated in the student’s own words\n",
302+
"\n",
303+
"- Two examples are correct and easily understandable\n",
304+
"\n",
305+
"- Correctness, time, and space complexity of the coding solution\n",
306+
"\n",
307+
"- Clarity in explaining why the solution works, its time and space complexity\n",
308+
"\n",
309+
"- Clarity in the proposal to the alternative solution\n",
310+
"\n",
311+
"## Submission Deadline\n",
312+
"TBD\n"
313+
]
314+
}
315+
],
316+
"metadata": {
317+
"kernelspec": {
318+
"display_name": "Python 3",
319+
"language": "python",
320+
"name": "python3"
321+
},
322+
"language_info": {
323+
"codemirror_mode": {
324+
"name": "ipython",
325+
"version": 3
326+
},
327+
"file_extension": ".py",
328+
"mimetype": "text/x-python",
329+
"name": "python",
330+
"nbconvert_exporter": "python",
331+
"pygments_lexer": "ipython3",
332+
"version": "3.11.7"
333+
}
334+
},
335+
"nbformat": 4,
336+
"nbformat_minor": 2
337+
}

0 commit comments

Comments
 (0)