RosettaCodeData/Task/Flatten-a-list/00DESCRIPTION
2019-09-12 10:33:56 -07:00

11 lines
339 B
Text

;Task:
Write a function to flatten the nesting in an arbitrary [[wp:List (computing)|list]] of values.
Your program should work on the equivalent of this list:
[[1], 2, [[3, 4], 5], [[[]]], [[[6]]], 7, 8, []]
Where the correct result would be the list:
[1, 2, 3, 4, 5, 6, 7, 8]
;Related task:
*   [[Tree traversal]]
<br><br>