We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ab574c commit d1991f6Copy full SHA for d1991f6
src/main/java/com/fishercoder/solutions/_896.java
@@ -11,27 +11,25 @@
11
* Return true if and only if the given array A is monotonic.
12
*
13
* Example 1:
14
- *
15
* Input: [1,2,2,3]
16
* Output: true
17
- * Example 2:
18
+ * Example 2:
19
* Input: [6,5,4,4]
20
21
- * Example 3:
22
+ * Example 3:
23
* Input: [1,3,2]
24
* Output: false
25
- * Example 4:
26
+ * Example 4:
27
* Input: [1,2,4,5]
28
29
- * Example 5:
30
+ * Example 5:
31
* Input: [1,1,1]
32
33
34
35
* Note:
36
37
* 1 <= A.length <= 50000
0 commit comments