492. 构造矩形水题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了492. 构造矩形水题相关的知识,希望对你有一定的参考价值。
https://leetcode-cn.com/problems/construct-the-rectangle/
class Solution {
public:
vector<int> constructRectangle(int area) {
int L=area,W=1;
for(int i=1;i<=area/i;i++) if(area%i==0) L=area/i,W=i;
vector<int>ans;
ans.push_back(L),ans.push_back(W);
return ans;
}
};
以上是关于492. 构造矩形水题的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 492 构造矩形[数学 枚举] HERODING的LeetCode之路
LeetCode 492. 构造矩形 / 638. 大礼包 / 240. 搜索二维矩阵 II