Adjust various testData to size transformation
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@ import java.util.*
|
||||
fun concat(l: List<String>): String? {
|
||||
val sb = StringBuilder()
|
||||
for(s in l) {
|
||||
val x = if(l.size() > 1) { "T" } else { "F" };
|
||||
val x = if(l.size > 1) { "T" } else { "F" };
|
||||
sb.append(x)
|
||||
}
|
||||
return sb.toString()
|
||||
|
||||
Reference in New Issue
Block a user