How to convert a 2D list to a 1D list in Kotlin

1 Answer

0 votes
fun main() {
    val list2D = listOf(
        listOf(5, 6, 1, 8),
        listOf(3, 2, 0, 4),
        listOf(9, 8, 7, 6)
    )

    val list1D: IntArray = list2D.flatten().toIntArray()
    
    println(list1D.contentToString())
}
 

 
/*
run:

[5, 6, 1, 8, 3, 2, 0, 4, 9, 8, 7, 6]
 
*/

 



answered Dec 27, 2024 by avibootz

Related questions

1 answer 86 views
86 views asked Jan 10, 2025 by avibootz
1 answer 121 views
3 answers 198 views
2 answers 171 views
...