mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 03:37:58 +07:00
14 lines
262 B
Java
14 lines
262 B
Java
// "Replace with allMatch()" "true"
|
|
|
|
public class Main {
|
|
boolean find(String[][] data) {
|
|
for(String[] arr : da<caret>ta) {
|
|
for(String str : arr) {
|
|
if(str.startsWith("xyz")) continue;
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|