├── .gitignore ├── 2-arbitrarily-large-data ├── ex-181.rkt ├── ex-182.rkt ├── ex-183.rkt ├── ex-184.rkt ├── ex-185.rkt └── ex-186.rkt ├── 3-abstraction ├── abstraction-recipe.rst ├── designing-with-abstraction.rst ├── ex-235.rkt ├── ex-236.rkt ├── ex-237.rkt ├── ex-238.rkt ├── ex-239.rkt ├── ex-240.rkt ├── ex-241.rkt ├── ex-242.rkt ├── ex-245.rkt ├── ex-246-to-248.rkt ├── ex-249.rkt ├── ex-250.rkt ├── ex-251.rkt ├── ex-252.rkt ├── ex-253.rkt ├── ex-254.rkt ├── ex-255.rkt ├── ex-256.rkt ├── ex-257.rkt ├── ex-258.rkt ├── ex-259.rkt ├── ex-260.rkt ├── ex-261.rkt ├── ex-262.rkt ├── ex-263-to-264.rkt ├── ex-265.rkt ├── ex-267.rkt ├── ex-268-to-269.rkt ├── ex-270.rkt ├── ex-271.rkt ├── ex-272.rkt ├── ex-273.rkt ├── ex-274.rkt ├── ex-275.rkt ├── ex-276.rkt ├── ex-277.rkt ├── ex-278.rkt ├── ex-279.rkt ├── ex-280.rkt ├── ex-281.rkt ├── ex-282.rkt ├── ex-283.rkt ├── ex-284.rkt ├── ex-285.rkt ├── ex-286-to-287.rkt ├── ex-288.rkt ├── ex-289.rkt ├── ex-290.rkt ├── ex-291.rkt ├── ex-292.rkt ├── ex-293.rkt ├── ex-294.rkt ├── ex-295.rkt ├── ex-297.rkt ├── ex-298.rkt ├── ex-299.rkt ├── ex-300.rkt ├── ex-301.rkt ├── ex-302.rkt ├── ex-303.rkt ├── ex-304.rkt ├── ex-305.rkt ├── ex-306.rkt ├── ex-307.rkt ├── ex-308.rkt └── ex-309.rkt ├── 4-intertwined-data ├── dummy-dir │ ├── README │ ├── lol.txt │ ├── subdir │ │ ├── README │ │ └── important-stuff │ └── subdir2 │ │ └── .keep ├── ex-310-to-315.rkt ├── ex-316-to-321.rkt ├── ex-322-to-327.rkt ├── ex-328.rkt ├── ex-329-to-337.rkt ├── ex-338-to-344.rkt ├── ex-345-to-351.rkt ├── ex-352-to-362.rkt ├── ex-363-to-377.rkt ├── ex-378-to-386.rkt ├── ex-387-to-389.rkt ├── ex-390-to-395.rkt ├── ex-396.rkt ├── ex-397.rkt ├── ex-398.rkt ├── ex-399.rkt ├── ex-400.rkt ├── ex-401-to-402.rkt ├── ex-403-to-411.rkt ├── ex-412-to-420.rkt └── sample.html ├── 5-generative-recursion ├── ex-421-to-423.rkt ├── ex-424-to-432.rkt ├── ex-433-to-437.rkt ├── ex-438-to-444.rkt ├── ex-445-to-450.rkt ├── ex-451.rkt ├── ex-452-to-454.rkt ├── ex-455-to-457.rkt ├── ex-458-to-461.rkt ├── ex-462-to-470.rkt ├── ex-471-to-476.rkt └── sierpinski.rkt ├── LICENSE ├── README.rst ├── batch-template.rkt ├── design-recipe.rst ├── ex-090.rkt ├── ex-092.rkt ├── ex-093.rkt ├── ex-094.rkt ├── ex-096.rkt ├── ex-100.rkt ├── ex-101.rkt ├── ex-103.rkt ├── ex-106.rkt ├── ex-107.rkt ├── ex-108.rkt ├── ex-109.rkt ├── ex-110.rkt ├── ex-111.rkt ├── ex-112.rkt ├── ex-113.rkt ├── ex-115.rkt ├── ex-134.rkt ├── ex-138.rkt ├── ex-139.rkt ├── ex-140.rkt ├── ex-141.rkt ├── ex-142.rkt ├── ex-143.rkt ├── ex-144.rkt ├── ex-145.rkt ├── ex-147.rkt ├── ex-150.rkt ├── ex-151.rkt ├── ex-152.rkt ├── ex-153.rkt ├── ex-154.rkt ├── ex-155.rkt ├── ex-156.rkt ├── ex-158.rkt ├── ex-159.rkt ├── ex-160.rkt ├── ex-161.rkt ├── ex-162.rkt ├── ex-163.rkt ├── ex-164.rkt ├── ex-165.rkt ├── ex-166.rkt ├── ex-167.rkt ├── ex-168.rkt ├── ex-169.rkt ├── ex-170.rkt ├── ex-171.rkt ├── ex-172.rkt ├── ex-173.rkt ├── ex-174.rkt ├── ex-175.rkt ├── ex-176.rkt ├── ex-177.rkt ├── ex-180.rkt ├── ex-187.rkt ├── ex-188.rkt ├── ex-189.rkt ├── ex-190.rkt ├── ex-192.rkt ├── ex-193.rkt ├── ex-194.rkt ├── ex-195-to-198.rkt ├── ex-199-to-204.rkt ├── ex-205-to-208.rkt ├── ex-209-to-214.rkt ├── ex-215-to-219.rkt ├── ex-220-to-223.rkt ├── ex-224.rkt ├── ex-225.rkt ├── ex-226-to-229.rkt ├── ex-230.rkt ├── ex-231.rkt ├── ex-232.rkt ├── ex-233.rkt ├── ex-234.rkt ├── images ├── cat.png ├── cham.png └── rocket.png ├── short-dictionary ├── short-ttt.txt ├── style-guide ├── ttt.txt └── world-template.rkt /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.scm 3 | TODO 4 | -------------------------------------------------------------------------------- /2-arbitrarily-large-data/ex-181.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/2-arbitrarily-large-data/ex-181.rkt -------------------------------------------------------------------------------- /2-arbitrarily-large-data/ex-182.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/2-arbitrarily-large-data/ex-182.rkt -------------------------------------------------------------------------------- /2-arbitrarily-large-data/ex-183.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/2-arbitrarily-large-data/ex-183.rkt -------------------------------------------------------------------------------- /2-arbitrarily-large-data/ex-184.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/2-arbitrarily-large-data/ex-184.rkt -------------------------------------------------------------------------------- /2-arbitrarily-large-data/ex-185.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/2-arbitrarily-large-data/ex-185.rkt -------------------------------------------------------------------------------- /2-arbitrarily-large-data/ex-186.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/2-arbitrarily-large-data/ex-186.rkt -------------------------------------------------------------------------------- /3-abstraction/abstraction-recipe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/abstraction-recipe.rst -------------------------------------------------------------------------------- /3-abstraction/designing-with-abstraction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/designing-with-abstraction.rst -------------------------------------------------------------------------------- /3-abstraction/ex-235.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-235.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-236.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-236.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-237.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-237.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-238.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-238.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-239.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-239.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-240.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-240.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-241.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-241.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-242.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-242.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-245.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-245.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-246-to-248.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-246-to-248.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-249.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-249.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-250.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-250.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-251.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-251.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-252.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-252.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-253.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-253.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-254.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-254.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-255.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-255.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-256.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-256.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-257.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-257.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-258.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-258.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-259.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-259.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-260.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-260.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-261.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-261.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-262.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-262.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-263-to-264.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-263-to-264.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-265.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-265.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-267.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-267.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-268-to-269.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-268-to-269.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-270.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-270.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-271.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-271.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-272.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-272.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-273.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-273.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-274.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-274.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-275.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-275.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-276.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-276.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-277.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-277.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-278.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-278.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-279.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-279.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-280.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-280.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-281.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-281.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-282.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-282.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-283.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-283.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-284.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-284.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-285.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-285.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-286-to-287.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-286-to-287.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-288.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-288.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-289.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-289.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-290.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-290.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-291.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-291.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-292.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-292.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-293.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-293.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-294.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-294.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-295.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-295.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-297.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-297.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-298.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-298.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-299.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-299.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-300.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-300.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-301.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-301.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-302.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-302.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-303.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-303.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-304.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-304.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-305.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-305.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-306.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-306.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-307.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-307.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-308.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-308.rkt -------------------------------------------------------------------------------- /3-abstraction/ex-309.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/3-abstraction/ex-309.rkt -------------------------------------------------------------------------------- /4-intertwined-data/dummy-dir/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/dummy-dir/README -------------------------------------------------------------------------------- /4-intertwined-data/dummy-dir/lol.txt: -------------------------------------------------------------------------------- 1 | Lol, pk, pt! 2 | -------------------------------------------------------------------------------- /4-intertwined-data/dummy-dir/subdir/README: -------------------------------------------------------------------------------- 1 | Yet another useful readme 2 | 3 | -------------------------------------------------------------------------------- /4-intertwined-data/dummy-dir/subdir/important-stuff: -------------------------------------------------------------------------------- 1 | [ ] Buy beer 2 | [ ] Write about the meaning of life 3 | -------------------------------------------------------------------------------- /4-intertwined-data/dummy-dir/subdir2/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4-intertwined-data/ex-310-to-315.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-310-to-315.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-316-to-321.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-316-to-321.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-322-to-327.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-322-to-327.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-328.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-328.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-329-to-337.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-329-to-337.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-338-to-344.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-338-to-344.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-345-to-351.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-345-to-351.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-352-to-362.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-352-to-362.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-363-to-377.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-363-to-377.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-378-to-386.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-378-to-386.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-387-to-389.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-387-to-389.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-390-to-395.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-390-to-395.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-396.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-396.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-397.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-397.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-398.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-398.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-399.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-399.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-400.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-400.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-401-to-402.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-401-to-402.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-403-to-411.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-403-to-411.rkt -------------------------------------------------------------------------------- /4-intertwined-data/ex-412-to-420.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/ex-412-to-420.rkt -------------------------------------------------------------------------------- /4-intertwined-data/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/4-intertwined-data/sample.html -------------------------------------------------------------------------------- /5-generative-recursion/ex-421-to-423.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-421-to-423.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-424-to-432.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-424-to-432.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-433-to-437.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-433-to-437.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-438-to-444.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-438-to-444.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-445-to-450.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-445-to-450.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-451.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-451.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-452-to-454.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-452-to-454.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-455-to-457.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-455-to-457.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-458-to-461.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-458-to-461.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-462-to-470.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-462-to-470.rkt -------------------------------------------------------------------------------- /5-generative-recursion/ex-471-to-476.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/ex-471-to-476.rkt -------------------------------------------------------------------------------- /5-generative-recursion/sierpinski.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/5-generative-recursion/sierpinski.rkt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/README.rst -------------------------------------------------------------------------------- /batch-template.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/batch-template.rkt -------------------------------------------------------------------------------- /design-recipe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/design-recipe.rst -------------------------------------------------------------------------------- /ex-090.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-090.rkt -------------------------------------------------------------------------------- /ex-092.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-092.rkt -------------------------------------------------------------------------------- /ex-093.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-093.rkt -------------------------------------------------------------------------------- /ex-094.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-094.rkt -------------------------------------------------------------------------------- /ex-096.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-096.rkt -------------------------------------------------------------------------------- /ex-100.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-100.rkt -------------------------------------------------------------------------------- /ex-101.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-101.rkt -------------------------------------------------------------------------------- /ex-103.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-103.rkt -------------------------------------------------------------------------------- /ex-106.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-106.rkt -------------------------------------------------------------------------------- /ex-107.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-107.rkt -------------------------------------------------------------------------------- /ex-108.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-108.rkt -------------------------------------------------------------------------------- /ex-109.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-109.rkt -------------------------------------------------------------------------------- /ex-110.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-110.rkt -------------------------------------------------------------------------------- /ex-111.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-111.rkt -------------------------------------------------------------------------------- /ex-112.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-112.rkt -------------------------------------------------------------------------------- /ex-113.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-113.rkt -------------------------------------------------------------------------------- /ex-115.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-115.rkt -------------------------------------------------------------------------------- /ex-134.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-134.rkt -------------------------------------------------------------------------------- /ex-138.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-138.rkt -------------------------------------------------------------------------------- /ex-139.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-139.rkt -------------------------------------------------------------------------------- /ex-140.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-140.rkt -------------------------------------------------------------------------------- /ex-141.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-141.rkt -------------------------------------------------------------------------------- /ex-142.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-142.rkt -------------------------------------------------------------------------------- /ex-143.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-143.rkt -------------------------------------------------------------------------------- /ex-144.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-144.rkt -------------------------------------------------------------------------------- /ex-145.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-145.rkt -------------------------------------------------------------------------------- /ex-147.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-147.rkt -------------------------------------------------------------------------------- /ex-150.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-150.rkt -------------------------------------------------------------------------------- /ex-151.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-151.rkt -------------------------------------------------------------------------------- /ex-152.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-152.rkt -------------------------------------------------------------------------------- /ex-153.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-153.rkt -------------------------------------------------------------------------------- /ex-154.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-154.rkt -------------------------------------------------------------------------------- /ex-155.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-155.rkt -------------------------------------------------------------------------------- /ex-156.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-156.rkt -------------------------------------------------------------------------------- /ex-158.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-158.rkt -------------------------------------------------------------------------------- /ex-159.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-159.rkt -------------------------------------------------------------------------------- /ex-160.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-160.rkt -------------------------------------------------------------------------------- /ex-161.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-161.rkt -------------------------------------------------------------------------------- /ex-162.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-162.rkt -------------------------------------------------------------------------------- /ex-163.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-163.rkt -------------------------------------------------------------------------------- /ex-164.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-164.rkt -------------------------------------------------------------------------------- /ex-165.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-165.rkt -------------------------------------------------------------------------------- /ex-166.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-166.rkt -------------------------------------------------------------------------------- /ex-167.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-167.rkt -------------------------------------------------------------------------------- /ex-168.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-168.rkt -------------------------------------------------------------------------------- /ex-169.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-169.rkt -------------------------------------------------------------------------------- /ex-170.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-170.rkt -------------------------------------------------------------------------------- /ex-171.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-171.rkt -------------------------------------------------------------------------------- /ex-172.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-172.rkt -------------------------------------------------------------------------------- /ex-173.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-173.rkt -------------------------------------------------------------------------------- /ex-174.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-174.rkt -------------------------------------------------------------------------------- /ex-175.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-175.rkt -------------------------------------------------------------------------------- /ex-176.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-176.rkt -------------------------------------------------------------------------------- /ex-177.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-177.rkt -------------------------------------------------------------------------------- /ex-180.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-180.rkt -------------------------------------------------------------------------------- /ex-187.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-187.rkt -------------------------------------------------------------------------------- /ex-188.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-188.rkt -------------------------------------------------------------------------------- /ex-189.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-189.rkt -------------------------------------------------------------------------------- /ex-190.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-190.rkt -------------------------------------------------------------------------------- /ex-192.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-192.rkt -------------------------------------------------------------------------------- /ex-193.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-193.rkt -------------------------------------------------------------------------------- /ex-194.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-194.rkt -------------------------------------------------------------------------------- /ex-195-to-198.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-195-to-198.rkt -------------------------------------------------------------------------------- /ex-199-to-204.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-199-to-204.rkt -------------------------------------------------------------------------------- /ex-205-to-208.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-205-to-208.rkt -------------------------------------------------------------------------------- /ex-209-to-214.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-209-to-214.rkt -------------------------------------------------------------------------------- /ex-215-to-219.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-215-to-219.rkt -------------------------------------------------------------------------------- /ex-220-to-223.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-220-to-223.rkt -------------------------------------------------------------------------------- /ex-224.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-224.rkt -------------------------------------------------------------------------------- /ex-225.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-225.rkt -------------------------------------------------------------------------------- /ex-226-to-229.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-226-to-229.rkt -------------------------------------------------------------------------------- /ex-230.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-230.rkt -------------------------------------------------------------------------------- /ex-231.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-231.rkt -------------------------------------------------------------------------------- /ex-232.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-232.rkt -------------------------------------------------------------------------------- /ex-233.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-233.rkt -------------------------------------------------------------------------------- /ex-234.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ex-234.rkt -------------------------------------------------------------------------------- /images/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/images/cat.png -------------------------------------------------------------------------------- /images/cham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/images/cham.png -------------------------------------------------------------------------------- /images/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/images/rocket.png -------------------------------------------------------------------------------- /short-dictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/short-dictionary -------------------------------------------------------------------------------- /short-ttt.txt: -------------------------------------------------------------------------------- 1 | Things Take Time. 2 | But not this poem. 3 | -------------------------------------------------------------------------------- /style-guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/style-guide -------------------------------------------------------------------------------- /ttt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/ttt.txt -------------------------------------------------------------------------------- /world-template.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgusach/exercises-htdp2e/HEAD/world-template.rkt --------------------------------------------------------------------------------