Reputation: 975
I have a List<List> and need to form a mutable list of lists out of it.
fun trial (check: List<List<Int>>): Int {
val mutableCheck : MutableList<MutableList<Int>> = //mutableListOf(check)?
}
I tried various ways, but not able to make it work.
Upvotes: 0
Views: 336