
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Assignment; Class: Programming Languages; Subject: Computer Science; University: University of Texas - San Antonio; Term: Fall 2008;
Typology: Assignments
1 / 1
This page cannot be seen from the preview
Don't miss anything!

The homework requires you to solve the following problems via scheme programming. You need to develop your scheme programs using the DrScheme environment and submit your solution file electronically via email to [email protected].
(count 3 7) 0 (Check ’y ’y) 1 (count ’x ’((x 3) (y 2) (3 z))) 1 (count 3 ’((x 3) (y 2) (3 z))) 2 (count ’z ’(x (z 5) (4 (z 4)))) 2 (count ’4 ’(x (z 4) (4 (z 4)))) 3
(Check 3.2 ’y) empty (Check ’y ’y) ’y (Check ’x ’((x 3) (y 2) (3 z))) (list ’x 3) (Check ’z ’(x (z 5) (4 (z 4)))) (list ’z 5)