java 来自https://leetcode.com/problems/construct-the-rectangle/#/description
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 来自https://leetcode.com/problems/construct-the-rectangle/#/description相关的知识,希望对你有一定的参考价值。
public class Solution {
public int[] constructRectangle(int area) {
int[] ans = {0,0};
int start = (int) Math.sqrt(area) ;
while (area % start != 0){
start--;
}
ans[0] = (area / start > start) ? area / start : start;
ans[1] = (area / start > start) ? start : area / start;
return ans;
}
}
以上是关于java 来自https://leetcode.com/problems/construct-the-rectangle/#/description的主要内容,如果未能解决你的问题,请参考以下文章
20-05-01
两数之和(LeetCode)
leetcode刷题两数之和
算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)
算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)
算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)