2005-12-24から1日間の記事一覧

#121 http://online-judge.uva.es/p/v1/121.html

UVa

"適当な"inputを自分で考えられるようにならなきゃ。

Exerciseとか全然やってないよ

やった方がいいよなぁ…

2.1 Introduction to Data Abstraction

ここまで読んだ。 眠い… Extended Exerciseは後で(気が向いたら)。 Exercise 2.6(チャーチ数) ;; Exercise 2.6 ;; Church Numeral (define zero (lambda (f) (lambda (x) x))) (define (add-1 n) (lambda (f) (lambda (x) (f ((n f) x))))) ; (add-1 zero) ;…

#123 http://online-judge.uva.es/p/v1/123.html

UVa

(Presentation Error) #122がRuntime Error起こしてどうにも分からないので息抜き。

2.2.3 Sequences as Conventional Interfaces

ここまで読んだ。map, filter, fold, append-map.