| 2013-06-19 |
| sicp-ex-1.3 | 23:59:45 | (12 hours ago) | Removed unneeded parenthesis around consequent variable x in if combination. |
| sicp-ex-1.3 | 23:25:34 | (12 hours ago) | ;; no min used
(define (square x) (* x x))
(define (sum-of-squares x y) (+ (square x) (square y)))
(define (biggest x y) (if (> x y) (x) y))
(define (input x y z) (sum-of-squares (biggest x y) (biggest y z))) |
| sicp-ex-2.11 | 21:52:37 | (14 hours ago) | comment by jsdalton |
| sicp-ex-2.6 | 02:01:10 | (1 day ago) | comment by jsdalton |
| 2013-06-18 |
| sicp-ex-2.5 | 21:39:17 | (1 day ago) | comment by jsdalton |
| 2013-06-16 |
| sicp-ex-1.7 | 23:04:55 | (3 days ago) | Explain more of the rationale for the alternative |
| 2013-06-11 |
| scheme-vs-haskell | 09:35:37 | (9 days ago) | Fixed a few typos |