Question: Write a sml function flatten that takes a list of lists and return a flattened list. For example, flatten [[1,2], [3], [4,5,6]] should return [1,2,3,4,5,6].
Write a sml function flatten that takes a list of lists and return a flattened list. For example, flatten [[1,2], [3], [4,5,6]] should return [1,2,3,4,5,6].
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
