mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
14 lines
264 B
Java
14 lines
264 B
Java
// "Replace with noneMatch()" "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;
|
|
}
|
|
}
|