I currently have an list (list1) that looks like this:
[[0],
[2],
[4],
[6],
[7],
[9],
[20],
[24],
[],
[26],
[],
[27],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[]]
and I would like to transform it to look like this, but I am having trouble:
[0, 2, 4, 6, 7, 9, 20, 24, 26, 27]
Any help is appreciated- thank you!