mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 19:58:23 +07:00
15 lines
267 B
Java
15 lines
267 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")) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|