Print white

Report a typo

You have the following code:

fun main() {
    val testList = mutableListOf(
        mutableListOf("a", "b", "c", "d", "e", "f", "g"),
        mutableListOf("h", "i", "j", "k", "l", "m", "n"),
        mutableListOf("o", "p", "q"),
        mutableListOf("r", "s", "t", "u", "v"),
        mutableListOf("w"),
        mutableListOf("x", "y"),
        mutableListOf("z")
    )
}

You need to print white. Select letters from testList and arrange them in the correct order top down.

Put the items in the correct order
testList[3][2]
testList[4][0]
testList[1][0]
testList[1][1]
testList[0][4]
___

Create a free account to access the full topic