Scala – convert List of Lists into a single List: List[List[A]] to List[A] July 30, 2023 by Tarik List has the flatten method. Why not use it? List(List(1,2), List(3,4)).flatten > List(1,2,3,4)