Question: Problem 3 [5pt] Write a function flatten which takes a list (which may contain other lists) and returns a single list containing the elements of
![Problem 3 [5pt] Write a function flatten which takes a list](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f3bc302f52b_45566f3bc2fa087f.jpg)
Problem 3 [5pt] Write a function flatten which takes a list (which may contain other lists) and returns a single list containing the elements of all of the lists. For example, (flatten '(1 (2) (2 3)) should return (1 2 2 3), and (flatten '(1 (2) (3 (4) should return (12 34)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
