Print ZERO

Report a typo

You have the following code:

fun main() {
    val charsArray = arrayOf(
        arrayOf('A', 'B', 'C', 'D'),
        arrayOf('E', 'F'),
        arrayOf('G', 'H', 'I', 'J'),
        arrayOf('K'),
        arrayOf('L', 'M', 'N', 'O', 'P', 'Q'),
        arrayOf('R', 'S', 'T'),
        arrayOf('U'),
        arrayOf('W'),
        arrayOf('X', 'Y', 'Z')
    )
}

You need to print ZERO. Select the letters from charsArray and arrange them in the correct order, top down.

Put the items in the correct order
charsArray[4][3]
charsArray[5][0]
charsArray[8][2]
charsArray[1][0]
___

Create a free account to access the full topic