mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
18 lines
437 B
Java
18 lines
437 B
Java
// "Replace with findFirst()" "true"
|
|
|
|
import java.util.*;
|
|
|
|
public class Main {
|
|
public Integer[] testFindFirstIfPresent(List<List<String>> data) {
|
|
List<Integer> result = new ArrayList<>();
|
|
for (List<String> list : data) {
|
|
for (String str : lis<caret>t) {
|
|
if (!str.isEmpty()) {
|
|
result.add(str.length());
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return result.toArray(new Integer[result.size()]);
|
|
}
|
|
} |