Question: Write a recursive Scheme function merge(firstNameList, lastNamelist) that receives a simple list of first names and a simple list of last names, and merges the

Write a recursive Scheme function merge(firstNameList, lastNamelist) that receives a simple list of first names and a simple list of last names, and merges the two lists into one list consisting of (firstName lastName) pairs. Display the result list. For example, if the inputs are (Tyler Frank Ann Molly), (Younes Judge Reagan Hampton), the output should be ( (Tyler Younes) (Frank Judge) (Ann Reagan) (Molly Hampton) )

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!