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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy