Adjust testData to CharSequence.length transformation
This commit is contained in:
committed by
Mikhail Glukhikh
parent
cb562e7ea5
commit
f0e3fd617d
+1
-1
@@ -11,6 +11,6 @@ fun box(): String {
|
||||
}
|
||||
}
|
||||
|
||||
if (sb.length() == 0) return "OK"
|
||||
if (sb.length == 0) return "OK"
|
||||
return "Fail:\n$sb"
|
||||
}
|
||||
|
||||
@@ -2,6 +2,6 @@ fun box(): String {
|
||||
val list = java.util.ArrayList<String>()
|
||||
list.add("0")
|
||||
list[0][0]
|
||||
list[0].length()
|
||||
list[0].length
|
||||
return "OK"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user