mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
10 lines
211 B
Java
10 lines
211 B
Java
// "Replace with allMatch()" "true"
|
|
|
|
import java.util.Arrays;
|
|
|
|
public class Main {
|
|
boolean allEmpty(String[][] data) {
|
|
return Arrays.stream(data).flatMap(Arrays::stream).allMatch(String::isEmpty);
|
|
}
|
|
}
|