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