Skip to content

Commit 8dabae9

Browse files
fix build
1 parent 0143ff2 commit 8dabae9

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+2
-2
lines changed

src/main/java/com/fishercoder/solutions/_896.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static class Solution1 {
4242
public boolean isMonotonic(int[] A) {
4343
int i = 0;
4444
for (; i < A.length - 1; i++) {
45-
if (A[i] <= A[i+1]) {
45+
if (A[i] <= A[i + 1]) {
4646
continue;
4747
} else {
4848
break;
@@ -53,7 +53,7 @@ public boolean isMonotonic(int[] A) {
5353
}
5454
i = 0;
5555
for (; i < A.length - 1; i++) {
56-
if (A[i] >= A[i+1]) {
56+
if (A[i] >= A[i + 1]) {
5757
continue;
5858
} else {
5959
break;

0 commit comments

Comments
 (0)