Question: Functional Programming with Scheme Write a Scheme function named unzip that takes one argument that is a list of two-lists. It returns a list of

Functional Programming with Scheme

Write a Scheme function named unzip that takes one argument that is a list of two-lists. It returns a list of two list, the first containing all of the first elements of the input tuples and the second with all of the second elements. Here are some example calls and their outputs: > (unzip '()) (()()) > (unzip '(1 x)) ((1) (x)) > (unzip '(((1 x) (2 y) (3 z))) ((1 2 3) (x y z))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!