Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit 6f7e602

Browse files
authored
FIX BUG
1 parent 6f14f4f commit 6f7e602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

usacotools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public static boolean smartequals2D(int[][] a,int[][] b) {
188188
return false;
189189
}
190190
for(int i=0;i<a.length;i++) {
191-
if(smartequals(a[i],b[i])) {
191+
if(!(smartequals(a[i],b[i]))) {
192192
return false;
193193
}
194194
}

0 commit comments

Comments
 (0)