Question

I have this kind of list:

[[[[{a,2},{s,w}],{e,1}],{d,l}]]

Is there a function that will remove all of the tuples so they are all on the same level? Like:

[{a,2},{s,w},{e,1},{d,l}]

Thanks

Was it helpful?

Solution

You can use flatten/1 from the lists module.

lists:flatten([[[[{a,2},{s,w}],{e,1}],{d,l}]]).
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top