Advertisement
valentina_cobo

Untitled

Apr 13th, 2022
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. (define powerset
  2. (lambda(lista)
  3. (cond
  4. [(null? lista)'(())]
  5. [else (let
  6. (
  7. (lista_sin1 (powerset (cdr lista)))
  8. )
  9. (append (cartesian-product (list(car lista))lista_sin1)
  10. lista_sin1))])))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement