2009-05-19から1日間の記事一覧

今日の夕飯

ダシ(昨日の残り) 海鮮巻き(マルマンのお惣菜) キュウリ 豚肉と大根の炒め煮 鶏胸肉のヨーグルト焼き 鶏胸肉のヨーグルト焼きのレシピはこんな感じ。 フライパンにオリーブオイルを入れ、クミン, コリアンダー, ベイリーフ, ガラムマサラを炒めて香りを出す …

SICP問題2.31

直接バージョン (define (tree-map proc items) (cond ((null? items) (list)) ((not (pair? items)) (proc items)) (else (cons (tree-map proc (car items)) (tree-map proc (cdr items)))))) map と再帰バージョン (define (tree-map proc tree) (map (la…

SICP問題2.30

直接バージョン (define (square-tree items) (cond ((null? items) (list)) ((not (pair? items)) (square items)) (else (cons (square-tree (car items)) (square-tree (cdr items)))))) map と再帰バージョン (define (square-tree tree) (map (lambda (…