mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
15 lines
267 B
Java
15 lines
267 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")) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|