摘要:
心情不好,被遣散回学校 ,心态不好 ,为什么会累,一直微笑就好了 #include<bits/stdc++.h> using namespace std; int main() { freopen("in","r",stdin);\ freopen("out","w",stdout); int n 阅读全文
摘要:
全场暴力 挺毒的 A 数字问题很简单 #include <bits/stdc++.h> using namespace std; int main() { freopen("in","r",stdin);\ freopen("out","w",stdout); int a,b,c,n; cin>>a 阅读全文
摘要:
11. 盛最多水的容器 class Solution { public: int maxArea(vector<int>& height) { vector<int> & v =height; int l =0,r=v.size()-1; int res = 0; while(l<r) { int 阅读全文