Quantcast
Channel: emoticode
Viewing all articles
Browse latest Browse all 15

Scheme - list flatten

$
0
0
(define list-flatten (lambda (l) (cond ((null? l) '()) ((atom? l) (list l)) (#t (append (flatten (car l)) (flatten (cdr l ...

Viewing all articles
Browse latest Browse all 15

Trending Articles