You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fun padSequence(
sequence : IntArray
) : IntArray {
val paddedSequence = IntArray( 120 ){ 0 }
sequence.forEachIndexed { index, i ->
paddedSequence[i] = index
}
return paddedSequence
}
java index out of bounds exception