Compare commits

..

6 commits

Author SHA1 Message Date
6fb03cda1c Add remaining solutions to exercises in subsection 2.3.3 2025-03-19 14:19:42 +01:00
57b8846963 Add first exercises from subsection 2.3.3 2025-03-18 17:31:09 +01:00
549a238bda Split solutions by chapter 2025-03-18 16:28:27 +01:00
e9bede6dda Add exercise 2.58
This was quite a long one, since I decided to both implement support for
constructing exponent ops, and also made sure that the expressions get
reasonably optimized once they are constructed.
2025-03-18 15:44:48 +01:00
39d48f34f4 Fix inaccurate comment in exercise 2.57 2025-03-10 12:13:39 +01:00
f5131b16db Add solutions to exercises 2.53-57 2025-03-07 13:31:43 +01:00
113 changed files with 706 additions and 0 deletions

7
chapter-2/ex-2.53.txt Normal file
View file

@ -0,0 +1,7 @@
(list 'a 'b 'c) -> (a b c)
(list (list 'george)) -> ((george))
(cdr '((x1 x2) (y1 y2))) -> ((y1 y2))
(cadr '((x1 x2) (y1 y2))) -> (y1 y2)
(pair? (car '(a short list))) -> #f
(memq 'red '((red shoes) (blue socks))) -> #f
(memq 'red '(red shoes blue socks)) -> (red shoes blue socks)

Some files were not shown because too many files have changed in this diff Show more