[LeetCode]223. 矩形面积

223. 矩形面积web class Solution { public: int computeArea(int A, int B, int C, int D, int E, int F, int G, int H) { long long tot=0; tot+=(C-A)*(D-B); tot+=(G-E)*(H-F);
相关文章
相关标签/搜索