I have a nested list that looks like this
[[[0]],
[[2], [1]],
[[3]],
[[4]],
[[5]],
[[6]],
[[7]],
[[8]],
[[9, 10]],
[[11]],
[[13], [12]]]
I want to simplify it into not flatten everything
[[0], [2], [1],[3],[4],[5],[6],[7],[8],[9,10],[11],[13],[12]]
simplify the nested list.