2015-11-13から1日間の記事一覧

2015年11月12日のツイート

window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr || {}; if (d.getElementById(id)) return t; js = d.createElement(s); js.id = id; js.src = "https://platform.twitter.com/widgets.js"; fjs.paren…

末尾再帰でフィボナッチ数を求める

Windowsタブレット購入して、結局Schemeとか再入門始めてる。 (define (fib-tail n) (fib-rec n 0 0 1)) (define (fib-rec max nth n1 n2) (if (>= nth max) n1 (fib-rec max (+ nth 1) n2 (+ n1 n2))))