Triple型のlistを最初の要素でsortすると
Error:Kotlin: Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath:
class kotlin.Triple, unresolved supertypes: java.io.Serializable
のエラーが出て困っています。
どのようにすればエラーは解消されますか?
Kotlin
1fun main(array: Array<String>) { 2 val n = readLine()!!.toInt() 3 val map = mutableListOf<Triple<String, Int, Int>>() 4 for (i in 0 until n) { 5 val (s, num) = readLine()!!.split(" ") 6 map.add(Triple(s, num.toInt(), i)) 7 } 8 print(map.sortBy { it.first }) 9}
回答1件
あなたの回答
tips
プレビュー