网站设配色自助建站 源码
题目:

题解:
class Solution:def constructRectangle(self, area: int) -> List[int]:w = int(sqrt(area))while area % w:w -= 1return [area // w, w]题目:

题解:
class Solution:def constructRectangle(self, area: int) -> List[int]:w = int(sqrt(area))while area % w:w -= 1return [area // w, w]