September 2017 Update

This commit is contained in:
Ingy döt Net 2017-09-23 10:01:46 +02:00
parent bba7bfd280
commit ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions

View file

@ -1,5 +0,0 @@
(define (power_set_iter set)
(let loop ((res '(())) (s set))
(if (empty? s)
res
(loop (append (map (lambda (i) (cons (car s) i)) res) res) (cdr s)))))

View file

@ -1,32 +0,0 @@
'((e d c b a)
(e d c b)
(e d c a)
(e d c)
(e d b a)
(e d b)
(e d a)
(e d)
(e c b a)
(e c b)
(e c a)
(e c)
(e b a)
(e b)
(e a)
(e)
(d c b a)
(d c b)
(d c a)
(d c)
(d b a)
(d b)
(d a)
(d)
(c b a)
(c b)
(c a)
(c)
(b a)
(b)
(a)
())