Hi, have anyone tried Kotlin on <codingame.com>? I...
# random
d
Hi, have anyone tried Kotlin on codingame.com? It seems that everything works fine except arrays? 😕 If I run this
val graph = Array<Array<Int>> (N, {Array<Int>(N,{0})})
in repl, everything compiles OK but their runtime prints
Copy code
Standard Error Stream:
Exception in thread "main" java.lang.NullPointerException
at AnswerKt.main on line 14
1