【leetcode】492. Construct the Rectangle
problem
solution1:
class Solution { public: vector<int> constructRectangle(int area) { int r = sqrt(area); while(area % r != 0) r--; return {area/r, r}; } };
solution2:
class Solution { public: vector<int> constructRectangle(int area) { int r = 1; for(int i=1; i*i <=area; i++) { if(area % i == 0) r = i; } return {area/r, r}; } };
参考
1. Leetcode_492. Construct the Rectangle;
2. GrandYang;
完
各美其美,美美与共,不和他人作比较,不对他人有期待,不批判他人,不钻牛角尖。
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/