RosettaCodeData/Task/Flatten-a-list/Maple/flatten-a-list-2.maple
2023-07-01 13:44:08 -04:00

7 lines
148 B
Text

flatten := proc(x)
`if`(type(x,'list'),seq(procname(i),i = x),x);
end proc:
L := [[1], 2, [[3,4], 5], [[[]]], [[[6]]], 7, 8, []]:
[flatten(L)];