mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 11:47:50 +07:00
15 lines
263 B
Java
15 lines
263 B
Java
// "Replace with allMatch()" "true"
|
|
|
|
public class Main {
|
|
boolean allEmpty(String[][] data) {
|
|
for(String[] arr : da<caret>ta) {
|
|
for(String str : arr) {
|
|
if(!str.isEmpty()) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|