摘要: 【leetcode】最大宽度坡 class Solution { public: int maxWidthRamp(vector<int>& A) { stack<int> ss; int ans = 0; ss.push(0); for(int i=1;i<A.size();i++) { if(A 阅读全文
posted @ 2020-10-09 16:14 yoyoyayababy 阅读(137) 评论(0) 推荐(0) 编辑