Ah, gotcha, didn't see the `\n`. `str.split("\n")....
# announcements
k
Ah, gotcha, didn't see the
\n
.
str.split("\n").map { it.split("\t").map { it.toInt() } }
Or as @Czar would say,
str.split("\n").map { it.split("\t").map(String::toInt) }
😛
😜 1
😃 1
k
😂 @Czar
thanks @karelpeeters
c
Yup, I'd be reluctant to use
it
twice for different steps of the chain.
👍🏼 1