class Solution {public: bool isMonotonic(vector<int>& A) { if(A.size()==1) return true; int i = 0; if(A[0]>A[1]) { if...
確定! 回上一頁