Question: Scheme and Haskell (Functional Programming with Recursion). Write a function that takes two lists of integers and returns a list containing tuples with corresponding elements

Scheme and Haskell (Functional Programming with Recursion).

Write a function that takes two lists of integers and returns a list containing tuples with corresponding elements from both the lists.

For example - f ([1, 2, 3], [4, 5, 6]) -> [(1, 4), (1,5), (1,6), (2, 4), (2, 5), (2, 6), (3, 4), (3 ,5), (3, 6)]. If either list is null, the result is null. The lists do not have to be the same length. Solve this using recursion. You may NOT use the length() function or lambda() function or comprehension lists to do your solution.

Solve it with Scheme and Haskell.

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!