I have list of lists like this:
List(List(1, 2, 3), List(1, 2), List(1))
I want to get
List(List(1, 2, 3), List(1, 2), List(1), List())
or
List(List(), List(1, 2, 3), List(1, 2), List(1))
Standart concatenation didn't work, so what should I do?