sicp icon indicating copy to clipboard operation
sicp copied to clipboard

收录我完成的练习题

Results 5 sicp issues
Sort by recently updated
recently updated
newest added

We should reset the counter upon one successful login to fulfil consecutive requirement? consider the following examples: 6 consecutive failed login 1 successful login 2 consecutive failed login -> will...

; mit-scheme 没有nil这个概念,这道题本身就是错的 (define (map p sequence) (accumulate (lambda (x y) (cons x (p y)) ) () sequence)) ; 序列反了 (define (append seq1 seq2) (accumulate cons seq2 seq1)) ; 会报错,参数少一个...

(define (e13 a b c ) (cond ((and (

题目见 http://sarabander.github.io/sicp/html/3_002e4.xhtml#Exercise-3_002e39 你的答案如下 > ; except two normal value, there are one special case > ; second proc read x before first set! works (after square operator, because set! is...