-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1783 lines (1518 loc) · 51.4 KB
/
Copy pathindex.html
File metadata and controls
1783 lines (1518 loc) · 51.4 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
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content ="CS 61A: Structure and Interpretation of Computer Programs" />
<meta name="keywords" content ="Computer Science, Programming, Berkeley, EECS" />
<meta name="author" content ="John DeNero, Kay Ousterhout" />
<!-- CHANGED CAREFUL -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-throttle-debounce/1.1/jquery.ba-throttle-debounce.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="/assets/js/hl.js"></script>
<script src="/assets/js/toggledarkmode.js"></script>
<script>
// we aren't registering builtins since
// (1) they don't render differently in the current CSS from other names
// (2) it's a mess to list all of them. You can extract from the site but that takes effort
// if (1) ceases to be true, (2) might be worth the effort. For now, we're leaving as is
hljsRegister({
'keyword': "define if cond and or let begin lambda mu quote delay cons-stream set! quasiquote unquote unquote-splicing define-macro"
});
hljs.initHighlightingOnLoad();
</script>
<script src="/assets/js/dark-mode.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata|Roboto:300,400,500|Work+Sans:400,700">
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="stylesheet" href="/assets/css/mono-blue.css">
<link rel="icon" href="/assets/images/favicon.ico">
<title>CS 61A Fall 2025</title>
</head>
<body id="index" class="home">
<nav class="navbar navbar-default navbar-static-top">
<div class="container noselect">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-section" aria-label="Toggle Navigation Bar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
CS 61A
<!-- <img style="max-width:60px; margin-top: -20px;" class="logo" src="/assets/images/logo.png"/> -->
</a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse-section">
<ul class="nav navbar-nav navbar-right">
<li><a href="/">Lectures</a></li>
<li><a href="/articles/about-61a/">Syllabus</a></li>
<li><a href="https://edstem.org/us/courses/82739/discussion">Ed</a></li>
<li><a href="/office-hours/">Office Hours</a></li>
<li><a href="/articles/contact-61a/">Contact</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Links
<span class="caret"></span>
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a href="https://go.cs61a.org/extensions">Request an Extension</a></li>
<li><a href="https://go.cs61a.org/regrades">Request a Regrade</a></li>
<li><a href="https://oh.cs61a.org/">Office Hours Queue</a></li>
<li><a href="/assignment-calendar/">Assignment Calendar</a></li>
<li><a href="">Gradescope</a></li>
<li><a href="https://sections.cs61a.org">Add/Change Sections</a></li>
<li><a href="https://bcourses.berkeley.edu/courses/1547573/pages">Lecture Recordings</a></li>
<li><a href="https://pythontutor.com/cp/composingprograms.html">Python Tutor</a></li>
<li><a href="https://code.cs61a.org/">Code Editors</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Resources
<span class="caret"></span>
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a href="/resources/">Past Exams & Websites</a></li>
<li><a href="https://www.composingprograms.com">Textbook</a></li>
<li><a href="/articles/campus-res/">Campus Resources</a></li>
<li><a href="/articles/advice/">Advice from Students</a></li>
<li><a href="/articles/scheme-spec/">Scheme Specifications</a></li>
<li><a href="/articles/scheme-builtins/">Scheme Built-In Procedures</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Guides
<span class="caret"></span>
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a href="https://drive.google.com/file/d/1O72u0ml65pibcjz-PXKpqeJDKaVqQ3D8/view">Debugging Guide</a></li>
<li><a href="/articles/studying/">Studying Guide</a></li>
<li><a href="/articles/composition/">Composition Guide</a></li>
<li><a href="/assets/pdfs/61a-mt1-study-guide.pdf">MT1 Study Guide</a></li>
<li><a href="/assets/pdfs/61a-mt2-study-guide.pdf">MT2 Study Guide</a></li>
<li><a href="/assets/pdfs/61a-final-study-guide.pdf">Final Study Guide</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Staff
<span class="caret"></span>
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a href="/instructor">Instructors</a></li>
<li><a href="/staff">TAs & Tutors</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<main id="content" class="container">
<header>
<h1>CS 61A: Structure and Interpretation of Computer Programs</h1>
<p>
Fall 2025:
<!--
Instructors:
John DeNero, Kay Ousterhout -->
Mon, Wed, Fri 1-2 p.m. in Wheeler 150
</p>
</header>
<section id="announcements">
<div class="announcement" id='announcement-0' style='display:block;'>
<button class="btn prev" style="color: black"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span> older</button>
<button class="btn next" style="color: black"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> newer</button>
<h2 class="frontpage-header">Announcements: Monday, September 8</h2>
<!-- <div><a href="#calendar_9_08">Jump to date</a></div> -->
<ul>
<li>Homework 1 is due Monday 9/8 @ 11:59pm.</li>
<li>Homework 2 (short) is due Thursday 9/11 @ 11:59pm.</li>
<li><p>The Hog Project is due Thursday 9/18 @ 11:59pm.</p>
<ul>
<li>Phase 1 of the project (called the checkpoint) is <strong>due Thursday 9/11</strong>.</li>
<li>You can get a bonus point for completing the project by Wednesday 9/17.</li>
<li>You can work with a partner and submit once for both of you.</li>
</ul></li>
<li><p>Midterm 1 is Tuesday 9/16 7pm-9pm in various locations around campus.</p>
<ul>
<li>You will be assigned a seat on Monday 9/15.</li>
<li>To request the alternate time or special seating, fill out the <a href="http://go.cs61a.org/mt1-alt-req">alteration request form</a> by Friday 9/12 @ 11:59pm.</li>
<li>Once you finish Homework 2 and Hog Phase 1, try a <a href="https://cs61a.org/resources/">past exam</a>.</li>
<li>Scratch paper and the <a href="https://cs61a.org/assets/pdfs/61a-mt1-study-guide.pdf">Midterm 1 study guide</a> will be provided.</li>
</ul></li>
<li>You can <a href="https://sections.cs61a.org/section/8607">join a lecture-style discussion section</a> Thursdays 5pm in Soda 306 if you don't want to discuss in a group.</li>
<li>You can <a href="https://sections.cs61a.org/tutoring">join an exam-prep tutoring session</a> this week.</li>
<li>No lab on Monday 9/15 or Tuesday 9/16.</li>
</ul>
</div>
<div class="announcement" id='announcement-1' >
<button class="btn prev" style="color: black"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span> older</button>
<button class="btn next" style="color: black"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> newer</button>
<h2 class="frontpage-header">Announcements: Friday, September 5</h2>
<!-- <div><a href="#calendar_9_05">Jump to date</a></div> -->
<ul>
<li>There is no longer a Zoom option for lecture, but there will be recordings of lecture all semester.</li>
<li>Homework 1 is due Monday 9/8 @ 11:59pm.</li>
<li>Homework 2 (short) is due Thursday 9/11 @ 11:59pm.</li>
<li><p>The Hog Project is due Thursday 9/18 @ 11:59pm.</p>
<ul>
<li>Phase 1 of the project (called the checkpoint) is <strong>due Thursday 9/11</strong>.</li>
<li>You can get a bonus point for completing the project by Wednesday 9/17.</li>
<li>You can work with a partner and submit once for both of you.</li>
</ul></li>
<li><p>Midterm 1 is Tuesday 9/16 7pm-9pm in various locations around campus.</p>
<ul>
<li>Once you finish Homework 2 and Hog Phase 1, try a <a href="https://cs61a.org/resources/">past exam</a>.</li>
<li>We will go through most questions from the Fall 2022 Midterm 1 in various lectures next week.</li>
<li>We will go through questions 1, 3, & 4 from the Spring 2025 Midterm 1 in lecture on Monday 9/15.</li>
<li>Details about logistics (where to go, what to bring, how to prepare) will be shared on Ed.</li>
</ul></li>
</ul>
</div>
<div class="announcement" id='announcement-2' >
<button class="btn prev" style="color: black"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span> older</button>
<button class="btn next" style="color: black"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> newer</button>
<h2 class="frontpage-header">Announcements: Wednesday, September 3</h2>
<!-- <div><a href="#calendar_9_03">Jump to date</a></div> -->
<ul>
<li>Zoom link for Lectures 1, 2, and 3: <a href="https://berkeley.zoom.us/j/99731895700">berkeley.zoom.us/j/99731895700</a></li>
<li><p>Lab 0 and Lab 1 are due Wednesday 9/3 @ 11:59pm.</p>
<ul>
<li>Definitely work through the optional questions this week (after you submit).</li>
</ul></li>
<li>Bring your Student ID to discussion; we will take attendance by scanning it.</li>
<li><p>Homework 1 is due Monday 9/8 @ 11:59pm.</p>
<ul>
<li><strong>Strongly recommended</strong>: Finish by Thursday 9/4.</li>
<li>It's <strong>not</strong> ok to share your homework code with others.</li>
<li>There's an experimental AI tutor called "61a-bot" that gives help on your code.</li>
</ul></li>
<li><p>Come to Staff Office Hours <a href="https://cs61a.org/office-hours/">cs61a.org/office-hours</a> to ask questions about homework & lab.</p>
<ul>
<li>Wednesday mornings 10-12am we will hold Zoom & In-Person office hours.</li>
</ul></li>
</ul>
</div>
<div class="announcement" id='announcement-3' >
<button class="btn prev" style="color: black"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span> older</button>
<button class="btn next" style="color: black"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> newer</button>
<h2 class="frontpage-header">Announcements: Friday, August 29</h2>
<!-- <div><a href="#calendar_8_29">Jump to date</a></div> -->
<ul>
<li>Zoom link for Lectures 1, 2, and 3: <a href="https://berkeley.zoom.us/j/99731895700">berkeley.zoom.us/j/99731895700</a></li>
<li>Monday labs are rescheduled to Friday 8/29 for this week only (due to the holiday).</li>
<li><p>First work on Lab 0 (setting up your computer) and then on Lab 1.</p>
<ul>
<li>Try Lab 0 before you come to lab if you have time.</li>
</ul></li>
<li><p>Lab 0 and Lab 1 are due Wednesday 9/3 @ 11:59pm.</p>
<ul>
<li>You're meant to complete lab assignments during lab.</li>
<li>It's ok to share your lab code with others if that's what helps you learn.</li>
<li>There is no attendance requirment for Lab 1, since some students are still working on their schedules.</li>
</ul></li>
<li><p>Homework 1 is due Monday 9/8 @ 11:59pm.</p>
<ul>
<li><strong>Strongly recommended</strong>: Finish by Thursday 9/4.</li>
<li>It's <strong>not</strong> ok to share your homework code with others.</li>
<li>There's an experimental AI tutor called "61a-bot" that gives help on your code.</li>
</ul></li>
<li>See Ed for: changing sections, lecture questions, external announcements, etc.</li>
</ul>
</div>
<div class="announcement" id='announcement-4' >
<button class="btn prev" style="color: black"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span> older</button>
<button class="btn next" style="color: black"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> newer</button>
<h2 class="frontpage-header">Announcements: Wednesday, August 27</h2>
<!-- <div><a href="#calendar_8_27">Jump to date</a></div> -->
<ul>
<li>Lecture 1 will happen again at 8pm on Wednesday 8/27 in 155 Dwinelle in case you missed it or couldn't see well.</li>
<li>Zoom link for Lectures 1, 2, and 3: <a href="https://berkeley.zoom.us/j/99731895700">berkeley.zoom.us/j/99731895700</a></li>
<li><p>Discussion starts this week (Wednesday, Thursday, Friday).</p>
<ul>
<li>We won't start taking attendance until next week.</li>
</ul></li>
<li>Lab starts Friday. Try Lab 0 before you arrive (but it's ok if you don't finish it).</li>
<li>Ed is a great place to ask questions.</li>
<li>Instructions for how to add or change lab & discussion sections should appear on Ed soon (perhaps Wednesday night).</li>
<li>The <a href="https://inst.eecs.berkeley.edu/~cs61a/sp25/">Spring 2025</a> and <a href="https://inst.eecs.berkeley.edu/~cs61a/su25/">Summer 61A</a> websites have been archived (@berkeley.edu login required).</li>
</ul>
</div>
<div class="announcement" id='announcement-5' >
<button class="btn prev" style="color: black"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span> older</button>
<button class="btn next" style="color: black"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> newer</button>
<h2 class="frontpage-header">Announcements: Tuesday, August 26</h2>
<!-- <div><a href="#calendar_8_26">Jump to date</a></div> -->
<ul>
<li>Welcome to CS 61A!</li>
<li>The <a href="https://inst.eecs.berkeley.edu/~cs61a/sp25/">Spring 2025</a> and <a href="https://inst.eecs.berkeley.edu/~cs61a/su25/">Summer 61A</a> websites have been archived (@berkeley.edu login required).</li>
</ul>
</div>
</section>
<h2 class="frontpage-header">Current Assignments</h2>
<section class="assignments" id="assignments">
</section>
<h2 class="frontpage-header">Calendar</h2>
<section id="calendar" class="table-responsive">
<table id="calendar" class="table" cellpadding="5px">
<tr>
<th>Week</th>
<th>Date</th>
<th>Lecture</th>
<th>Textbook</th>
<th>Lab & Discussion Links</th>
<th>Homework & Project</th>
</tr>
<tr class="odd">
<td rowspan="2" class="weeknum odd">1</td>
<td><a id="calendar_8_27" class="calendar-date-anchor"></a>Wed<br>8/27</td>
<td>
<div class="assignment-text">
Welcome
</div>
<ul class="list-inline">
<li><a href="https://berkeley.zoom.us/j/99731895700" class="label label-outline" target="_blank">Zoom</a></li>
<li><a href="https://bcourses.berkeley.edu/courses/1547573/pages/lecture-1-welcome" class="label label-outline" target="_blank">Recording</a></li>
<li><a href="/assets/slides/01-Welcome_1pp.pdf" class="label label-outline">Slides (1pp)</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
</ul>
</td>
<td>
<span class="">
<a href="/disc/disc00/" class="assignment-text">Disc 00: Getting Started</a>
<ul class="list-inline">
</ul>
</span>
<br/>
<span class="">
<a href="/lab/lab00/">Lab 00: Getting Started</a>
<div class="badge due">
Due
Wed 9/3
</div>
</span>
</td>
<td></td>
</tr>
<tr class="odd">
<td><a id="calendar_8_29" class="calendar-date-anchor"></a>Fri<br>8/29</td>
<td>
<div class="assignment-text">
Functions
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=gNv81_4X0uU&list=PL6BsET-8jgYULSxiV2garZ0FxbnXR08MP&index=1" class="label label-outline" target="_blank">Videos</a></li>
<li><a href="https://berkeley.zoom.us/j/99731895700" class="label label-outline" target="_blank">Zoom</a></li>
<li><a href="https://bcourses.berkeley.edu/courses/1547573/pages/lecture-2-functions" class="label label-outline" target="_blank">Recording</a></li>
<li><a href="/assets/slides/02-Functions_1pp.pdf" class="label label-outline">Slides (1pp)</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/11-getting-started.html" class="label label-outline" target="_blank">Ch. 1.1</a></li>
<li><a href="https://www.composingprograms.com/pages/12-elements-of-programming.html" class="label label-outline" target="_blank">Ch. 1.2</a></li>
<li><a href="https://www.composingprograms.com/pages/13-defining-new-functions.html" class="label label-outline" target="_blank">Ch. 1.3</a></li>
</ul>
</td>
<td>
<span class="">
<a href="/lab/lab01/">Lab 01: Functions</a>
<div class="badge due">
Due
Wed 9/3
</div>
</span>
</td>
<td>
<span class="">
<a href="/hw/hw01/">HW 01: Functions, Control</a>
<div class="badge due">
Due
Mon 9/8
</div>
</span>
</td>
</tr>
<tr class="even">
<td rowspan="3" class="weeknum even">2</td>
<td><a id="calendar_9_01" class="calendar-date-anchor"></a>Mon<br>9/1</td>
<td>No Lecture: Labor Day</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td><a id="calendar_9_03" class="calendar-date-anchor"></a>Wed<br>9/3</td>
<td>
<div class="assignment-text">
Control
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=IPec2A7j2bY&list=PL6BsET-8jgYVCz97Y75GRXSWbb4sTpDIR" class="label label-outline" target="_blank">Videos</a></li>
<li><a href="https://berkeley.zoom.us/j/99731895700" class="label label-outline" target="_blank">Zoom</a></li>
<li><a href="https://bcourses.berkeley.edu/courses/1547573/pages/lecture-3-control" class="label label-outline" target="_blank">Recording</a></li>
<li><a href="/assets/slides/03-Control_1pp.pdf" class="label label-outline">Slides (1pp)</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/14-designing-functions.html" class="label label-outline" target="_blank">Ch. 1.4</a></li>
<li><a href="https://www.composingprograms.com/pages/15-control.html" class="label label-outline" target="_blank">Ch. 1.5</a></li>
</ul>
</td>
<td>
<span class="">
<a href="/disc/disc01/" class="assignment-text">Disc 01: Control, Environment Diagrams</a>
<ul class="list-inline">
</ul>
</span>
</td>
<td></td>
</tr>
<tr class="even">
<td><a id="calendar_9_05" class="calendar-date-anchor"></a>Fri<br>9/5</td>
<td>
<div class="assignment-text">
Higher-Order Functions
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=pveIuZT0GJE&list=PL6BsET-8jgYXvcnnEX7x2_USaYug9xZFv" class="label label-outline" target="_blank">Videos</a></li>
<li><a href="https://bcourses.berkeley.edu/courses/1547573/pages/lecture-4-higher-order-functions" class="label label-outline" target="_blank">Recording</a></li>
<li><a href="/assets/slides/04-Higher-Order_Functions_1pp.pdf" class="label label-outline">Slides (1pp)</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/16-higher-order-functions.html" class="label label-outline" target="_blank">Ch. 1.6</a></li>
</ul>
</td>
<td></td>
<td>
<span class="">
<a href="/hw/hw02/">HW 02: Higher-Order Functions</a>
<div class="badge due">
Due
Thu 9/11
</div>
</span>
<br/>
<span class="">
<a href="/proj/hog/">Hog</a>
<div class="badge due">
Checkpt
Thu 9/11
</div>
<div class="badge due">
Early Due
Wed 9/17
</div>
<div class="badge due">
Due
Thu 9/18
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/playlist?list=PLx38hZJ5RLZfpHDDcEnevQqlX4wTxuMAD" class="label label-outline" target="_blank">Getting Started Videos</a></li>
</ul>
</span>
</td>
</tr>
<tr class="odd">
<td rowspan="3" class="weeknum odd">3</td>
<td><a id="calendar_9_08" class="calendar-date-anchor"></a>Mon<br>9/8</td>
<td>
<div class="assignment-text">
Environments
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=1P2UgdAWwYg&list=PL6BsET-8jgYXTuSlJNYQS740YMCRHT79g" class="label label-outline" target="_blank">Videos</a></li>
<li><a href="https://bcourses.berkeley.edu/courses/1547573/pages/lecture-5-environments" class="label label-outline" target="_blank">Recording</a></li>
<li><a href="/assets/slides/05-Environments_1pp.pdf" class="label label-outline">Slides (1pp)</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/16-higher-order-functions.html" class="label label-outline" target="_blank">Ch. 1.6</a></li>
</ul>
</td>
<td>
<span class="">
<a href="/lab/lab02/">Lab 02: Higher-Order Functions, Lambda Expressions</a>
<div class="badge due">
Due
Wed 9/10
</div>
</span>
</td>
<td></td>
</tr>
<tr class="odd">
<td><a id="calendar_9_10" class="calendar-date-anchor"></a>Wed<br>9/10</td>
<td>
<div class="assignment-text">
Functional Abstraction
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=PKlgS5eofNY&list=PL6BsET-8jgYVSwKGjsM9y1j8RQsRwtDy3&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
</ul>
</td>
<td>
<span class="">
<span class="assignment-text">Disc 02: Environment Diagrams, Higher-Order Functions</span>
<ul class="list-inline">
<li><a href="https://www.youtube.com/playlist?list=PLx38hZJ5RLZewn613BpJGzDCmEh-br_Zn" class="label label-outline" target="_blank">Video</a></li>
</ul>
</span>
</td>
<td></td>
</tr>
<tr class="odd">
<td><a id="calendar_9_12" class="calendar-date-anchor"></a>Fri<br>9/12</td>
<td>
<div class="assignment-text">
Function Examples
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=guc-Q1x2vAY&list=PL6BsET-8jgYX6yuG9s7zO8GA1xHwHARFX&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
</ul>
</td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td rowspan="4" class="weeknum even">4</td>
<td><a id="calendar_9_15" class="calendar-date-anchor"></a>Mon<br>9/15</td>
<td>Midterm 1 Review</td>
<td>
<ul class="list-inline">
</ul>
</td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td><a id="calendar_9_16" class="calendar-date-anchor"></a>Tue<br>9/16</td>
<td>Midterm 1 (7pm-9pm)</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td><a id="calendar_9_17" class="calendar-date-anchor"></a>Wed<br>9/17</td>
<td>
<div class="assignment-text">
Recursion
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=31EDjrN1x5k&list=PL6BsET-8jgYUUBHIgUAqjrMUoPCGQcYdl&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/17-recursive-functions.html" class="label label-outline" target="_blank">Ch. 1.7</a></li>
</ul>
</td>
<td>
<span class="">
<span class="assignment-text">Disc 03: Recursion</span>
<ul class="list-inline">
<li><a href="https://www.youtube.com/playlist?list=PLx38hZJ5RLZfzZl-jztFnfHyfzjEgXYg1" class="label label-outline" target="_blank">Video</a></li>
</ul>
</span>
</td>
<td></td>
</tr>
<tr class="even">
<td><a id="calendar_9_19" class="calendar-date-anchor"></a>Fri<br>9/19</td>
<td>
<div class="assignment-text">
Tree Recursion
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=VYYkJ1OLXBw&list=PL6BsET-8jgYUUWPap4etQjZVWlWUeFxn0&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/17-recursive-functions.html" class="label label-outline" target="_blank">Ch. 1.7</a></li>
</ul>
</td>
<td></td>
<td>
<span class="">
HW 03: Recursion, Tree Recursion
<div class="badge due">
Due
Thu 9/25
</div>
</span>
</td>
</tr>
<tr class="odd">
<td rowspan="3" class="weeknum odd">5</td>
<td><a id="calendar_9_22" class="calendar-date-anchor"></a>Mon<br>9/22</td>
<td>
<div class="assignment-text">
Sequences
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=-Q45UcQ2XJk&list=PL6BsET-8jgYVfI7chdrXciKy8CP10tOcl&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/21-introduction.html" class="label label-outline" target="_blank">Ch. 2.1</a></li>
<li><a href="https://www.composingprograms.com/pages/23-sequences.html" class="label label-outline" target="_blank">Ch. 2.3</a></li>
</ul>
</td>
<td>
<span class="">
Lab 03: Recursion, Python Lists
<div class="badge due">
Due
Wed 9/24
</div>
</span>
</td>
<td></td>
</tr>
<tr class="odd">
<td><a id="calendar_9_24" class="calendar-date-anchor"></a>Wed<br>9/24</td>
<td>
<div class="assignment-text">
Containers
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=aSqOiUZg7kQ&list=PL6BsET-8jgYW50w7isVJS3YumstvFX1LY&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/23-sequences.html" class="label label-outline" target="_blank">Ch. 2.3</a></li>
</ul>
</td>
<td>
<span class="">
<span class="assignment-text">Disc 04: Tree Recursion</span>
<ul class="list-inline">
<li><a href="https://www.youtube.com/playlist?list=PLx38hZJ5RLZe0s_JOJ5895R1p98EYpazE" class="label label-outline" target="_blank">Video</a></li>
</ul>
</span>
</td>
<td>
<span class="">
Cats
<div class="badge due">
Checkpt
Thu 10/2
</div>
<div class="badge due">
Early Due
Wed 10/8
</div>
<div class="badge due">
Due
Thu 10/9
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/playlist?list=PLx38hZJ5RLZfQfRYgUehyb_HNRv_YCVEs" class="label label-outline" target="_blank">Getting Started Videos</a></li>
</ul>
</span>
</td>
</tr>
<tr class="odd">
<td><a id="calendar_9_26" class="calendar-date-anchor"></a>Fri<br>9/26</td>
<td>
<div class="assignment-text">
Data Abstraction
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=nzP3nJ2np8w&list=PL6BsET-8jgYWCdzh9cSNcwAhXe9NOWwjH&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/22-data-abstraction.html" class="label label-outline" target="_blank">Ch. 2.2</a></li>
</ul>
</td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td rowspan="3" class="weeknum even">6</td>
<td><a id="calendar_9_29" class="calendar-date-anchor"></a>Mon<br>9/29</td>
<td>
<div class="assignment-text">
Trees
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=qFCJANh5ht8&list=PL6BsET-8jgYX7kDENvuBNGDg1lwHL2PKC&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/23-sequences.html" class="label label-outline" target="_blank">Ch. 2.3</a></li>
</ul>
</td>
<td>
<span class="">
Lab 04: Tree Recursion, Data Abstraction
<div class="badge due">
Due
Wed 10/1
</div>
</span>
</td>
<td></td>
</tr>
<tr class="even">
<td><a id="calendar_10_01" class="calendar-date-anchor"></a>Wed<br>10/1</td>
<td>
<div class="assignment-text">
Mutability
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=Q-CewobDFZM&list=PL6BsET-8jgYWfS7Jqp64nI7uQLXLPWObR&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/24-mutable-data.html" class="label label-outline" target="_blank">Ch. 2.4</a></li>
</ul>
</td>
<td>
<span class="">
<span class="assignment-text">Disc 05: Trees</span>
<ul class="list-inline">
<li><a href="https://www.youtube.com/playlist?list=PLx38hZJ5RLZfU4miG-W4iR070LSvQQpgv" class="label label-outline" target="_blank">Video</a></li>
</ul>
</span>
</td>
<td></td>
</tr>
<tr class="even">
<td><a id="calendar_10_03" class="calendar-date-anchor"></a>Fri<br>10/3</td>
<td>
<div class="assignment-text">
Iterators
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=On-kFyFp8HY&list=PL6BsET-8jgYW7stiut93PHxGP6_QgBzVQ&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/42-implicit-sequences.html" class="label label-outline" target="_blank">Ch. 4.2</a></li>
</ul>
</td>
<td></td>
<td>
<span class="">
HW 04: Sequences, Data Abstraction, Trees
<div class="badge due">
Due
Thu 10/9
</div>
</span>
</td>
</tr>
<tr class="odd">
<td rowspan="3" class="weeknum odd">7</td>
<td><a id="calendar_10_06" class="calendar-date-anchor"></a>Mon<br>10/6</td>
<td>
<div class="assignment-text">
Generators
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=DyXPnQuaa0w&list=PL6BsET-8jgYXnY-7vDJXIv2N5xW98rJTZ&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/42-implicit-sequences.html" class="label label-outline" target="_blank">Ch. 4.2</a></li>
</ul>
</td>
<td>
<span class="">
Lab 05: Iterators, Mutability
<div class="badge due">
Due
Wed 10/8
</div>
</span>
</td>
<td></td>
</tr>
<tr class="odd">
<td><a id="calendar_10_08" class="calendar-date-anchor"></a>Wed<br>10/8</td>
<td>
<div class="assignment-text">
Objects
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=XdRZkeCRXs4&list=PL6BsET-8jgYVz2dLlWRsktOrtqO8wWRsy&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/25-object-oriented-programming.html" class="label label-outline" target="_blank">Ch. 2.5</a></li>
</ul>
</td>
<td>
<span class="">
<span class="assignment-text">Disc 06: Generators</span>
<ul class="list-inline">
<li><a href="https://www.youtube.com/playlist?list=PLx38hZJ5RLZeQ03JkjI-SoZ2aHtlLavJ1" class="label label-outline" target="_blank">Video</a></li>
</ul>
</span>
</td>
<td></td>
</tr>
<tr class="odd">
<td><a id="calendar_10_10" class="calendar-date-anchor"></a>Fri<br>10/10</td>
<td>
<div class="assignment-text">
Attributes
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=mimP7cNrSHA&list=PL6BsET-8jgYVhCKr4EHUE9mw9kcH7Kg7Y&ab_channel=JohnDeNero" class="label label-outline" target="_blank">Videos</a></li>
</ul>
</td>
<td>
<ul class="list-inline">
<li><a href="https://www.composingprograms.com/pages/25-object-oriented-programming.html" class="label label-outline" target="_blank">Ch. 2.5</a></li>
</ul>
</td>
<td></td>
<td>
<span class="">
HW 05: Generators
<div class="badge due">
Due
Thu 10/16
</div>
</span>
<br/>
<span class="">
Ants
<div class="badge due">
Checkpt
1
Thu 10/16
</div>
<div class="badge due">
Checkpt
2
Tue 10/21
</div>
<div class="badge due">
Early Due
Wed 10/22
</div>
<div class="badge due">
Due
Thu 10/23
</div>
<ul class="list-inline">
<li><a href="https://www.youtube.com/playlist?list=PLx38hZJ5RLZdH1AQFUuP-ixu7nAEK4OLP" class="label label-outline" target="_blank">Getting Started Videos</a></li>
</ul>
</span>
</td>
</tr>
<tr class="even">