mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
15 lines
343 B
Java
15 lines
343 B
Java
// "Replace with count()" "true"
|
|
|
|
public class Main {
|
|
public long test(String[] array) {
|
|
long longStrings = 0;
|
|
for(String str : a<caret>rray) {
|
|
String trimmed = str.trim();
|
|
if(trimmed.length() > 10) {
|
|
longStrings = longStrings + 1;
|
|
if(longStrings >= 100) break;
|
|
}
|
|
}
|
|
return longStrings;
|
|
}
|
|
} |