Ok. So what's up with this bit here `var digitArra...
# announcements
j
Ok. So what's up with this bit here
var digitArray: MutableList<MutableList>
k
You don't actually need to specify the type top-level, this works too:
val list = mutableListOf (mutableListOf<Int>())