;;; ================================ ;;; CMPU-145, Spring 2013 ;;; Asmt. 1 ;;; YOUR NAME HERE!!!! <--------------------------------- ;;; ================================ (load "asmt-helper.txt") (header "Asmt. 1" "YOUR NAME HERE!!!!") ;; <--------------------- ;;; --------------- ;;; (1) ;;; --------------- (problem "(1) DISJOINT?") ;;; DISJOINT? ;;; --------------------------------------------- ;;; INPUTS: Two lists representing sets ;;; OUTPUT: #t if the two sets are disjoint (i.e., have no elements in common) ;;; #f otherwise ;;; --------------- ;;; (2) ;;; --------------- (problem "(2) POWER-SET") ;;; POWER-SET ;;; ------------------------------ ;;; INPUT: LISTY, a list representing a set ;;; OUTPUT: A list of lists representing the power set of LISTY (i.e., the ;;; set of all subsets of LISTY)