hey guys, what is the kotlin equivalent of java's ...
# announcements
j
hey guys, what is the kotlin equivalent of java's
private float[][] labelProbArray = new float[1][256*256]
?
stackoverflow 2
🤣 1
google 2
m
Copy code
val even: IntArray = intArrayOf(2, 4, 6)
val odd: IntArray = intArrayOf(1, 3, 5)

val lala: Array<IntArray> = arrayOf(even, odd)
??? ...just change the type
j
thanks all!