Loading [MathJax]/extensions/tex2jax.js

2010年7月15日木曜日

Find the number of elements of a list

;; P04 (*) Find the number of elements of a list.
(define (longitude lst)
(let loop ((lst lst) (acc 0))
(if (null? lst)
acc
(loop (cdr lst) (+ 1 acc)))))
view raw p04.ss hosted with ❤ by GitHub

0 件のコメント:

コメントを投稿