492. Construct the Rectangle

2018-04-11  本文已影响11人  安东可

492. Construct the Rectangle
【思路】

    vector<int> constructRectangle(int area) {
        int mid = sqrt(area);
        for(int i = mid; i>0; i--)
            if (!(area%i))
                return {area/i, i};
    }
上一篇下一篇

猜你喜欢

热点阅读