├── .gitignore ├── README.md ├── cs61a └── lib │ ├── adv-world.scm │ ├── adv.scm │ ├── ambeval.scm │ ├── ambeval2.scm │ ├── analyze.scm │ ├── animal.scm │ ├── apl-meta.scm │ ├── apl.scm │ ├── bst.scm │ ├── bubsort.scm │ ├── buggy.romannum.scm │ ├── change.scm │ ├── circ-print.scm │ ├── collect.scm │ ├── concurrent.scm │ ├── constraint.scm │ ├── data.scm │ ├── dd.set.tests.scm │ ├── dd.sets.fw.scm │ ├── demo2.scm │ ├── double-talker.scm │ ├── dwell.scm │ ├── env_stuff.scm │ ├── friendly-obj.scm │ ├── huffman.scm │ ├── im-client.scm │ ├── im-common.scm │ ├── im-server.scm │ ├── int-1.scm │ ├── lab8-acc.scm │ ├── labyrinth.scm │ ├── lazy.scm │ ├── lint.scm │ ├── logic-data.scm │ ├── logo-meta.scm │ ├── logo.scm │ ├── maze.scm │ ├── mceval.scm │ ├── meta.scm │ ├── modeler.scm │ ├── mp.sets.fw.scm │ ├── obj.scm │ ├── overtraced-eval.scm │ ├── packages.scm │ ├── picture.scm │ ├── pigl.scm │ ├── plural.scm │ ├── prisoner.scm │ ├── proj2.scm │ ├── pronounce.scm │ ├── query.scm │ ├── record.scm │ ├── resist.scm │ ├── review.stream.scm │ ├── review.stream.soln.scm │ ├── rps.scm │ ├── scheme0.scm │ ├── scheme1.scm │ ├── scheme2.scm │ ├── serial.scm │ ├── set.tests.scm │ ├── sets.fw.scm │ ├── small-world.scm │ ├── table-loc.scm │ ├── tables.scm │ ├── test-ambeval.scm │ ├── times.scm │ ├── tmceval.scm │ ├── trace-it.scm │ ├── trace.scm │ ├── traced-ambeval.scm │ ├── traced-analyze.scm │ ├── traced-eval.scm │ ├── traced-lazy.scm │ ├── traced-vambeval.scm │ ├── trydata.scm │ ├── twenty-one.scm │ └── vambeval.scm ├── finalexam ├── f-1.pdf ├── f-1.soln.txt ├── f-2.pdf ├── f-2.soln.txt ├── f-3.pdf └── f-3.soln.txt ├── index.html ├── midterm1 ├── mt1-1.pdf ├── mt1-1.soln.txt ├── mt1-2.pdf ├── mt1-2.soln.txt ├── mt1-3.pdf └── mt1-3.soln.txt ├── midterm2 ├── mt2-1.pdf ├── mt2-1.soln.txt ├── mt2-2.pdf ├── mt2-2.soln.txt ├── mt2-3.pdf └── mt2-3.soln.txt ├── midterm3 ├── mt3-1.pdf ├── mt3-1.soln.txt ├── mt3-2.pdf ├── mt3-2.soln.txt ├── mt3-3.pdf └── mt3-3.soln.txt ├── missingchapters.html ├── project1 ├── project1.pdf └── twenty-one.scm ├── project2 └── project2.txt ├── project3 ├── adv-world.scm ├── adv.scm ├── labyrinth.scm ├── obj.scm ├── project3.txt └── small-world.scm ├── project4 ├── logo-meta.scm ├── logo.scm ├── project4.txt └── tables.scm ├── sicp.webp ├── week1 ├── hwsicp-1-2.pdf ├── labs-1-2.pdf └── notes-part-1.pdf ├── week10 ├── hwsicp-18.pdf ├── labs-15.pdf └── notes-part-10.pdf ├── week11 ├── hwsicp-19.pdf ├── labs-16.pdf ├── notes-part-11.pdf └── therac25.pdf ├── week12 ├── hwsicp-20.pdf ├── labs-17-18.pdf ├── mapreduce.pdf └── notes-part-12.pdf ├── week13 ├── hwsicp-21-22.pdf ├── labs-19-21.pdf └── notes-part-13.pdf ├── week14 ├── hwsicp-23.pdf ├── labs-22.pdf └── notes-part-14.pdf ├── week15 ├── hwsicp-24-25.pdf ├── labs-23.pdf └── notes-part-15.pdf ├── week16 └── notes-part-16.pdf ├── week2 ├── hwsicp-3-4.pdf ├── labs-3-4.pdf └── notes-part-2.pdf ├── week3 ├── hwsicp-5-6.pdf ├── labs-5.pdf └── notes-part-3.pdf ├── week4 ├── hwsicp-7.pdf ├── labs-6.pdf └── notes-part-4.pdf ├── week5 ├── hwsicp-8-9.pdf ├── labs-7.pdf └── notes-part-5.pdf ├── week6 ├── hwsicp-10-11.pdf ├── labs-8.pdf └── notes-part-6.pdf ├── week7 ├── hwsicp-12-14.pdf ├── labs-9.pdf ├── notes-part-7.pdf └── oop_aboveline.pdf ├── week8 ├── hwsicp-15.pdf ├── labs-10-13.pdf ├── notes-part-8.pdf └── oop_belowline.pdf └── week9 ├── hwsicp-16-17.pdf ├── labs-14.pdf └── notes-part-9.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/README.md -------------------------------------------------------------------------------- /cs61a/lib/adv-world.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/adv-world.scm -------------------------------------------------------------------------------- /cs61a/lib/adv.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/adv.scm -------------------------------------------------------------------------------- /cs61a/lib/ambeval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/ambeval.scm -------------------------------------------------------------------------------- /cs61a/lib/ambeval2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/ambeval2.scm -------------------------------------------------------------------------------- /cs61a/lib/analyze.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/analyze.scm -------------------------------------------------------------------------------- /cs61a/lib/animal.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/animal.scm -------------------------------------------------------------------------------- /cs61a/lib/apl-meta.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/apl-meta.scm -------------------------------------------------------------------------------- /cs61a/lib/apl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/apl.scm -------------------------------------------------------------------------------- /cs61a/lib/bst.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/bst.scm -------------------------------------------------------------------------------- /cs61a/lib/bubsort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/bubsort.scm -------------------------------------------------------------------------------- /cs61a/lib/buggy.romannum.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/buggy.romannum.scm -------------------------------------------------------------------------------- /cs61a/lib/change.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/change.scm -------------------------------------------------------------------------------- /cs61a/lib/circ-print.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/circ-print.scm -------------------------------------------------------------------------------- /cs61a/lib/collect.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/collect.scm -------------------------------------------------------------------------------- /cs61a/lib/concurrent.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/concurrent.scm -------------------------------------------------------------------------------- /cs61a/lib/constraint.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/constraint.scm -------------------------------------------------------------------------------- /cs61a/lib/data.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/data.scm -------------------------------------------------------------------------------- /cs61a/lib/dd.set.tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/dd.set.tests.scm -------------------------------------------------------------------------------- /cs61a/lib/dd.sets.fw.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/dd.sets.fw.scm -------------------------------------------------------------------------------- /cs61a/lib/demo2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/demo2.scm -------------------------------------------------------------------------------- /cs61a/lib/double-talker.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/double-talker.scm -------------------------------------------------------------------------------- /cs61a/lib/dwell.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/dwell.scm -------------------------------------------------------------------------------- /cs61a/lib/env_stuff.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/env_stuff.scm -------------------------------------------------------------------------------- /cs61a/lib/friendly-obj.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/friendly-obj.scm -------------------------------------------------------------------------------- /cs61a/lib/huffman.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/huffman.scm -------------------------------------------------------------------------------- /cs61a/lib/im-client.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/im-client.scm -------------------------------------------------------------------------------- /cs61a/lib/im-common.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/im-common.scm -------------------------------------------------------------------------------- /cs61a/lib/im-server.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/im-server.scm -------------------------------------------------------------------------------- /cs61a/lib/int-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/int-1.scm -------------------------------------------------------------------------------- /cs61a/lib/lab8-acc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/lab8-acc.scm -------------------------------------------------------------------------------- /cs61a/lib/labyrinth.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/labyrinth.scm -------------------------------------------------------------------------------- /cs61a/lib/lazy.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/lazy.scm -------------------------------------------------------------------------------- /cs61a/lib/lint.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/lint.scm -------------------------------------------------------------------------------- /cs61a/lib/logic-data.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/logic-data.scm -------------------------------------------------------------------------------- /cs61a/lib/logo-meta.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/logo-meta.scm -------------------------------------------------------------------------------- /cs61a/lib/logo.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/logo.scm -------------------------------------------------------------------------------- /cs61a/lib/maze.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/maze.scm -------------------------------------------------------------------------------- /cs61a/lib/mceval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/mceval.scm -------------------------------------------------------------------------------- /cs61a/lib/meta.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/meta.scm -------------------------------------------------------------------------------- /cs61a/lib/modeler.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/modeler.scm -------------------------------------------------------------------------------- /cs61a/lib/mp.sets.fw.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/mp.sets.fw.scm -------------------------------------------------------------------------------- /cs61a/lib/obj.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/obj.scm -------------------------------------------------------------------------------- /cs61a/lib/overtraced-eval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/overtraced-eval.scm -------------------------------------------------------------------------------- /cs61a/lib/packages.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/packages.scm -------------------------------------------------------------------------------- /cs61a/lib/picture.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/picture.scm -------------------------------------------------------------------------------- /cs61a/lib/pigl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/pigl.scm -------------------------------------------------------------------------------- /cs61a/lib/plural.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/plural.scm -------------------------------------------------------------------------------- /cs61a/lib/prisoner.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/prisoner.scm -------------------------------------------------------------------------------- /cs61a/lib/proj2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/proj2.scm -------------------------------------------------------------------------------- /cs61a/lib/pronounce.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/pronounce.scm -------------------------------------------------------------------------------- /cs61a/lib/query.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/query.scm -------------------------------------------------------------------------------- /cs61a/lib/record.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/record.scm -------------------------------------------------------------------------------- /cs61a/lib/resist.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/resist.scm -------------------------------------------------------------------------------- /cs61a/lib/review.stream.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/review.stream.scm -------------------------------------------------------------------------------- /cs61a/lib/review.stream.soln.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/review.stream.soln.scm -------------------------------------------------------------------------------- /cs61a/lib/rps.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/rps.scm -------------------------------------------------------------------------------- /cs61a/lib/scheme0.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/scheme0.scm -------------------------------------------------------------------------------- /cs61a/lib/scheme1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/scheme1.scm -------------------------------------------------------------------------------- /cs61a/lib/scheme2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/scheme2.scm -------------------------------------------------------------------------------- /cs61a/lib/serial.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/serial.scm -------------------------------------------------------------------------------- /cs61a/lib/set.tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/set.tests.scm -------------------------------------------------------------------------------- /cs61a/lib/sets.fw.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/sets.fw.scm -------------------------------------------------------------------------------- /cs61a/lib/small-world.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/small-world.scm -------------------------------------------------------------------------------- /cs61a/lib/table-loc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/table-loc.scm -------------------------------------------------------------------------------- /cs61a/lib/tables.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/tables.scm -------------------------------------------------------------------------------- /cs61a/lib/test-ambeval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/test-ambeval.scm -------------------------------------------------------------------------------- /cs61a/lib/times.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/times.scm -------------------------------------------------------------------------------- /cs61a/lib/tmceval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/tmceval.scm -------------------------------------------------------------------------------- /cs61a/lib/trace-it.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/trace-it.scm -------------------------------------------------------------------------------- /cs61a/lib/trace.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/trace.scm -------------------------------------------------------------------------------- /cs61a/lib/traced-ambeval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/traced-ambeval.scm -------------------------------------------------------------------------------- /cs61a/lib/traced-analyze.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/traced-analyze.scm -------------------------------------------------------------------------------- /cs61a/lib/traced-eval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/traced-eval.scm -------------------------------------------------------------------------------- /cs61a/lib/traced-lazy.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/traced-lazy.scm -------------------------------------------------------------------------------- /cs61a/lib/traced-vambeval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/traced-vambeval.scm -------------------------------------------------------------------------------- /cs61a/lib/trydata.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/trydata.scm -------------------------------------------------------------------------------- /cs61a/lib/twenty-one.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/twenty-one.scm -------------------------------------------------------------------------------- /cs61a/lib/vambeval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/cs61a/lib/vambeval.scm -------------------------------------------------------------------------------- /finalexam/f-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/finalexam/f-1.pdf -------------------------------------------------------------------------------- /finalexam/f-1.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/finalexam/f-1.soln.txt -------------------------------------------------------------------------------- /finalexam/f-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/finalexam/f-2.pdf -------------------------------------------------------------------------------- /finalexam/f-2.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/finalexam/f-2.soln.txt -------------------------------------------------------------------------------- /finalexam/f-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/finalexam/f-3.pdf -------------------------------------------------------------------------------- /finalexam/f-3.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/finalexam/f-3.soln.txt -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/index.html -------------------------------------------------------------------------------- /midterm1/mt1-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm1/mt1-1.pdf -------------------------------------------------------------------------------- /midterm1/mt1-1.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm1/mt1-1.soln.txt -------------------------------------------------------------------------------- /midterm1/mt1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm1/mt1-2.pdf -------------------------------------------------------------------------------- /midterm1/mt1-2.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm1/mt1-2.soln.txt -------------------------------------------------------------------------------- /midterm1/mt1-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm1/mt1-3.pdf -------------------------------------------------------------------------------- /midterm1/mt1-3.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm1/mt1-3.soln.txt -------------------------------------------------------------------------------- /midterm2/mt2-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm2/mt2-1.pdf -------------------------------------------------------------------------------- /midterm2/mt2-1.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm2/mt2-1.soln.txt -------------------------------------------------------------------------------- /midterm2/mt2-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm2/mt2-2.pdf -------------------------------------------------------------------------------- /midterm2/mt2-2.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm2/mt2-2.soln.txt -------------------------------------------------------------------------------- /midterm2/mt2-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm2/mt2-3.pdf -------------------------------------------------------------------------------- /midterm2/mt2-3.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm2/mt2-3.soln.txt -------------------------------------------------------------------------------- /midterm3/mt3-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm3/mt3-1.pdf -------------------------------------------------------------------------------- /midterm3/mt3-1.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm3/mt3-1.soln.txt -------------------------------------------------------------------------------- /midterm3/mt3-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm3/mt3-2.pdf -------------------------------------------------------------------------------- /midterm3/mt3-2.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm3/mt3-2.soln.txt -------------------------------------------------------------------------------- /midterm3/mt3-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm3/mt3-3.pdf -------------------------------------------------------------------------------- /midterm3/mt3-3.soln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/midterm3/mt3-3.soln.txt -------------------------------------------------------------------------------- /missingchapters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/missingchapters.html -------------------------------------------------------------------------------- /project1/project1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project1/project1.pdf -------------------------------------------------------------------------------- /project1/twenty-one.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project1/twenty-one.scm -------------------------------------------------------------------------------- /project2/project2.txt: -------------------------------------------------------------------------------- 1 | Project 2 is in the textbook! See section 2.2.4 of SICP 2 | -------------------------------------------------------------------------------- /project3/adv-world.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project3/adv-world.scm -------------------------------------------------------------------------------- /project3/adv.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project3/adv.scm -------------------------------------------------------------------------------- /project3/labyrinth.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project3/labyrinth.scm -------------------------------------------------------------------------------- /project3/obj.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project3/obj.scm -------------------------------------------------------------------------------- /project3/project3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project3/project3.txt -------------------------------------------------------------------------------- /project3/small-world.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project3/small-world.scm -------------------------------------------------------------------------------- /project4/logo-meta.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project4/logo-meta.scm -------------------------------------------------------------------------------- /project4/logo.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project4/logo.scm -------------------------------------------------------------------------------- /project4/project4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project4/project4.txt -------------------------------------------------------------------------------- /project4/tables.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/project4/tables.scm -------------------------------------------------------------------------------- /sicp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/sicp.webp -------------------------------------------------------------------------------- /week1/hwsicp-1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week1/hwsicp-1-2.pdf -------------------------------------------------------------------------------- /week1/labs-1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week1/labs-1-2.pdf -------------------------------------------------------------------------------- /week1/notes-part-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week1/notes-part-1.pdf -------------------------------------------------------------------------------- /week10/hwsicp-18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week10/hwsicp-18.pdf -------------------------------------------------------------------------------- /week10/labs-15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week10/labs-15.pdf -------------------------------------------------------------------------------- /week10/notes-part-10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week10/notes-part-10.pdf -------------------------------------------------------------------------------- /week11/hwsicp-19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week11/hwsicp-19.pdf -------------------------------------------------------------------------------- /week11/labs-16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week11/labs-16.pdf -------------------------------------------------------------------------------- /week11/notes-part-11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week11/notes-part-11.pdf -------------------------------------------------------------------------------- /week11/therac25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week11/therac25.pdf -------------------------------------------------------------------------------- /week12/hwsicp-20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week12/hwsicp-20.pdf -------------------------------------------------------------------------------- /week12/labs-17-18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week12/labs-17-18.pdf -------------------------------------------------------------------------------- /week12/mapreduce.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week12/mapreduce.pdf -------------------------------------------------------------------------------- /week12/notes-part-12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week12/notes-part-12.pdf -------------------------------------------------------------------------------- /week13/hwsicp-21-22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week13/hwsicp-21-22.pdf -------------------------------------------------------------------------------- /week13/labs-19-21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week13/labs-19-21.pdf -------------------------------------------------------------------------------- /week13/notes-part-13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week13/notes-part-13.pdf -------------------------------------------------------------------------------- /week14/hwsicp-23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week14/hwsicp-23.pdf -------------------------------------------------------------------------------- /week14/labs-22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week14/labs-22.pdf -------------------------------------------------------------------------------- /week14/notes-part-14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week14/notes-part-14.pdf -------------------------------------------------------------------------------- /week15/hwsicp-24-25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week15/hwsicp-24-25.pdf -------------------------------------------------------------------------------- /week15/labs-23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week15/labs-23.pdf -------------------------------------------------------------------------------- /week15/notes-part-15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week15/notes-part-15.pdf -------------------------------------------------------------------------------- /week16/notes-part-16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week16/notes-part-16.pdf -------------------------------------------------------------------------------- /week2/hwsicp-3-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week2/hwsicp-3-4.pdf -------------------------------------------------------------------------------- /week2/labs-3-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week2/labs-3-4.pdf -------------------------------------------------------------------------------- /week2/notes-part-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week2/notes-part-2.pdf -------------------------------------------------------------------------------- /week3/hwsicp-5-6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week3/hwsicp-5-6.pdf -------------------------------------------------------------------------------- /week3/labs-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week3/labs-5.pdf -------------------------------------------------------------------------------- /week3/notes-part-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week3/notes-part-3.pdf -------------------------------------------------------------------------------- /week4/hwsicp-7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week4/hwsicp-7.pdf -------------------------------------------------------------------------------- /week4/labs-6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week4/labs-6.pdf -------------------------------------------------------------------------------- /week4/notes-part-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week4/notes-part-4.pdf -------------------------------------------------------------------------------- /week5/hwsicp-8-9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week5/hwsicp-8-9.pdf -------------------------------------------------------------------------------- /week5/labs-7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week5/labs-7.pdf -------------------------------------------------------------------------------- /week5/notes-part-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week5/notes-part-5.pdf -------------------------------------------------------------------------------- /week6/hwsicp-10-11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week6/hwsicp-10-11.pdf -------------------------------------------------------------------------------- /week6/labs-8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week6/labs-8.pdf -------------------------------------------------------------------------------- /week6/notes-part-6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week6/notes-part-6.pdf -------------------------------------------------------------------------------- /week7/hwsicp-12-14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week7/hwsicp-12-14.pdf -------------------------------------------------------------------------------- /week7/labs-9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week7/labs-9.pdf -------------------------------------------------------------------------------- /week7/notes-part-7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week7/notes-part-7.pdf -------------------------------------------------------------------------------- /week7/oop_aboveline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week7/oop_aboveline.pdf -------------------------------------------------------------------------------- /week8/hwsicp-15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week8/hwsicp-15.pdf -------------------------------------------------------------------------------- /week8/labs-10-13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week8/labs-10-13.pdf -------------------------------------------------------------------------------- /week8/notes-part-8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week8/notes-part-8.pdf -------------------------------------------------------------------------------- /week8/oop_belowline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week8/oop_belowline.pdf -------------------------------------------------------------------------------- /week9/hwsicp-16-17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week9/hwsicp-16-17.pdf -------------------------------------------------------------------------------- /week9/labs-14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week9/labs-14.pdf -------------------------------------------------------------------------------- /week9/notes-part-9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbird/sicp/HEAD/week9/notes-part-9.pdf --------------------------------------------------------------------------------