Search

You can find the results of your search below.

lab_0
7 Hits, Last modified:
t determine the intersection and the union of two sets \\ \\ * To begin: - Open a command line wi... orking!) code: - Define a function, called SUBSET?, that takes two inputs, AA and BB, that are lists representing sets. The function should return #t (or something that signifies TRUE) if AA is a subset of BB; #f otherwise. - Review the test cases.
lab_1
5 Hits, Last modified:
* represent well-formed lists. Write a similar set of expressions for the built-in LIST and APPEND f... (4 5) (6 7 8 9)))) (tester '(map (lambda (subsetlist) (list (first subsetlist) (second subsetlist))) '((1 2 3) (4 5) (6 7 8 9)))) Define a function, called