摘要: 1 class Solution { 2 public boolean isMonotonic(int[] A) { 3 if(A.length == 0) return false; 4 if(A.length == 1 || A.length == 2) return true; 5 int j = 0, flag = 0; ... 阅读全文
posted @ 2018-11-02 06:28 jasoncool1 阅读(138) 评论(0) 推荐(0) 编辑