-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolutions.html
executable file
·194 lines (146 loc) · 8.14 KB
/
solutions.html
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CS10 Lab Solutions</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<div>
<div class="fullBody">
<div id="lab">
<div class="subtitle">Lab Solutions</div>
<br/>
<div>In some of the solutions below, the stage may be empty. In these cases, you will be able to find
the solutions by locating the proper block in the tabs on the left and viewing its definition.</div>
<br/>
<div class="subtitle">Lab 02: Loops and Variables</div>
<div>
<div>Experiment With Repeat
(<a href="solutions/lab02/Shapes.sb">Solution</a>)</div>
<div>Change Tempo
(<a href="solutions/lab02/ChangeTempo.sb">Solution</a>)</div>
<div>Variable Tutorial
(<a href="solutions/lab02/NotesFrom50To100.sb">Solution</a>)</div>
<div>Variable-Sized Shapes
(<a href="solutions/lab02/DrawShapeVariable.sb">Solution</a>)</div>
<div>Countdown
(<a href="solutions/lab02/Countdown.sb">Solution</a>)</div>
<div>Draw a Squiral
(<a href="solutions/lab02/Squiral.sb">Solution</a>)</div>
</div>
<br />
<div class="subtitle">Lab 03: Random, If and Input</div>
<div>Random Character
(<a href="solutions/lab03/RandomCharacter.sb">Solution</a>)</div>
<div>Number-Guessing Game v2.0
(<a href="solutions/lab03/GuessTheNumberSolution.sb">Solution</a>)</div>
<div>Rock, Paper, Scissors: Script
(<a href="solutions/lab03/RockPaperScissors.sb">Solution</a>)</div>
<br />
<div class="subtitle">Lab 04: BYOB</div>
<div>Make a <em>draw shape</em> Block
(<a href="solutions/lab04/DrawShape.ypr">Solution</a>)</div>
<div>Composition of Functions
(<a href="solutions/lab04/Composition.ypr">Solution</a>)</div>
<div>Predicates: Make a <em>between</em> block
(<a href="solutions/lab04/BetweenPredicate.ypr">Solution</a>)</div>
<br />
<div class="subtitle">Lab 05: Lists I</div>
<div>Read a List of Names
(<a href="solutions/lab05/BuggyReadingListSolution.ypr">Solution</a>)</div>
<div>Process a List
(<a href="solutions/lab05/ProcessList.ypr">Solution</a>)</div>
<div>Practice with Index Variables
(<a href="solutions/lab05/IndexPractice.ypr">Solution</a>)</div>
<div>Remove List Elements
(<a href="solutions/lab05/RemoveEntriesList.ypr">Solution</a>)</div>
<div>Remove List Elements: Take Two
(<a href="solutions/lab05/RemoveEntriesFix.ypr">Solution</a>)</div>
<div>Range of List Elements
(<a href="solutions/lab05/RangeList.ypr">Solution</a>)</div>
<div>Processing a Sentence
(<a href="solutions/lab05/SentenceProcessing.ypr">Solution</a>)</div>
<div>Swap List Values
(<a href="solutions/lab05/SwapListValues.ypr">Solution</a>)</div>
<div>Check if a List is Sorted
(<a href="solutions/lab05/ListIsSorted.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 06: Algorithms</div>
<div>Algorithms in BYOB
(<a href="solutions/lab06/algorithms.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 07: Lists II
(<a href="solutions/lab07/gameboard.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 08: Algorithm Complexity
(<a href="solutions/lab08/timing.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 10: Recursion I</div>
<div>Recursive Tree Part 2
(<a href="solutions/lab10/tree.ypr">Solution</a>)</div>
<div>Random Tree
(<a href="solutions/lab10/crazy-tree.ypr">Solution</a>)</div>
<div>Snowflake
(<a href="solutions/lab10/snowflake.ypr">Solution</a>)</div>
<div>C-Curve
(<a href="solutions/lab10/c-curve.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 12: Recursion II</div>
<div>Numbers in a Range
(<a href="solutions/lab12/MinToMax.ypr">Solution</a>)</div>
<div>Squiral
(<a href="solutions/lab12/Squiral.ypr">Solution</a>)</div>
<div>Add the Digits in a Number
(<a href="solutions/lab12/DigitSum.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 14: Recursion III</div>
<div>Practice: Aibohphobia
(<a href="solutions/lab14/palindrome.ypr">Solution</a>)</div>
<div>Practice: Lists
(<a href="solutions/lab14/listpractice.ypr">Solution</a>)</div>
<div>Flood Fill
(<a href="solutions/lab14/floodfill.ypr">Solution</a>)</div>
<div>A Prime Opportunity
(<a href="solutions/lab14/sieve.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 15: Applications that Changed the World</div>
<div>Practice: Working with Hash Tables
(<a href="solutions/lab15/phonebook.ypr">Solution</a>)</div>
<div>Searching in BYOB</a>
(<a href="solutions/lab15/search.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 18: Lambda and HOFs, I</div>
<div>Using Map
(<a href="solutions/lab18/MapExample.ypr">Solution</a>)</div>
<div>Transforming the Beatles
(<a href="solutions/lab18/TransformBeatles.ypr">Solution</a>)</div>
<div>Exaggerating your Sentences
(<a href="solutions/lab18/Exaggerate.ypr">Solution</a>)</div>
<div>Using Keep
(<a href="solutions/lab18/KeepExample.ypr">Solution</a>)</div>
<div>Count "ums"
(<a href="solutions/lab18/CountUms.ypr">Solution</a>)</div>
<div>Choose Beatles
(<a href="solutions/lab18/ChooseBeatles.ypr">Solution</a>)</div>
<div>Calculate your GPA
(<a href="solutions/lab18/GPA.ypr">Solution</a>)</div>
<div>Letter Count
(<a href="solutions/lab18/LetterCount.ypr">Solution</a>)</div>
<div>Using Cascade
(<a href="solutions/lab18/CascadeExample.ypr">Solution</a>)</div>
<div>Finding a Subword
(<a href="solutions/lab18/Subword.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 19: Lambda and HOFs, II</div>
<div>Tic-Tac-Toe
(<a href="solutions/lab19/Tic-Tac-Toe.ypr">Solution</a>)</div>
<br/>
<div class="subtitle">Lab 20: Distributed Computing</div>
<div>Map Reduce
(<a href="solutions/lab20/MapReduce-Answers.ypr">Solution</a>)</div>
</div>
</div>
<hr />
</div>
</body>
</html>