-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeek2.html
More file actions
161 lines (161 loc) · 5.92 KB
/
Week2.html
File metadata and controls
161 lines (161 loc) · 5.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<title> Week 2 Assignments </title>
<link rel ="stylesheet" href="Week2.css">
</head>
<body>
<h1> Week 2 Assignments <Table></Table></h1>
<ul>
<li> Difficulty: 1 = no problem at all, 5 = could not do</li>
<li> Usefulness: 1 = not good use of time, 5 = very useful</li>
</ul>
<h2> Assignments: Python</h2>
<table>
<thead>
<tr>
<th>#</th>
<th>Assignment</th>
<th>Submission</th>
<th>Time (hours)</th>
<th>Difficult (1-5)</th>
<th>Useful (1-5)</th>
</tr>
</thead>
<tbody>
<tr>
<td>2.1*</td>
<td>Watch first 7 tutorial videos (as needed)</td>
<td class="empty">N/A</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.2</td>
<td>Watch tutorial video 2-8 (generating a simple website with Python)</td>
<td class="empty">N/A</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.3</td>
<td>fizzbuzz</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.4</td>
<td><code>primes</code></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.5</td>
<td><code>prime_factorization</code> function</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.6</td>
<td><code>my_sort</code> function</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.7</td>
<td>encrypt and decrypt a text file</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.8</td>
<td>Unscramble English words</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.9</td>
<td>Choose your own adventure game</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.10*</td>
<td>Web-based choose your own adventure game</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.11*</td>
<td>Evaluate arithmetic</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.12*</td>
<td>Sudoku solver</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.13*</td>
<td>make change with US coins</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.14*</td>
<td>Build clickable prototype of your own app, using sample data as in tutorial 2-8.</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2.A</td>
<td>What did you like this week?</td>
<td colspan="4"></td>
</tr>
<tr>
<td>2.B</td>
<td>What didn't you like this week?</td>
<td colspan="4"></td>
</tr>
<tr>
<td>2.C</td>
<td>How can we improve the material from this week?</td>
<td colspan="4"></td>
</tr>
<tr>
<td>2.D*</td>
<td>Show us anything else you coded up this week!</td>
<td colspan="4"></td>
</tr>
</tbody>
</table>
</body>
</html>