Is it the easiest way to declare two-dimensional Int array with specified size in Kotlin?
Int
val board = Array(n, { IntArray(n) })
Currently this is the easiest way, we will extend the standard library with appropriate functions later