码迷,mamicode.com
首页 > 其他好文 > 详细

1209. Construct the Rectangle

时间:2020-01-06 12:42:45      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:back   sqrt   page   you   ons   %s   rectangle   ret   int start   

1209. Construct the Rectangle

class Solution {
public:
    /**
     * @param area: web pagea€?s area
     * @return: the length L and the width W of the web page you designed in sequence
     */
    vector<int> constructRectangle(int area) {
        // Write your code here
        int start = sqrt(area);
        while(area%start != 0 && start<area)
        {
            start ++;
        }
        vector<int> res;
        res.push_back(start);
        res.push_back(area/start);
        return res;
    }
};

1209. Construct the Rectangle

标签:back   sqrt   page   you   ons   %s   rectangle   ret   int start   

原文地址:https://www.cnblogs.com/virgildevil/p/12155486.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!