LintCode题解之判断是否为平方数之和

LintCode题解之判断是否为平方数之和

简单粗暴

public class Solution {

    /*
* @param : the given number
* @return: whether whether there're two integers
*/
public boolean checkSumOfSquareNumbers(int n) {
int max = (int)Math.sqrt(n) + 1;
for(int i=0; i<max; i++){
for(int j=0; j<max; j++){
if(i*i + j*j == n) return true;
}
}
return false;
} };

 

题目来源: http://www.lintcode.com/zh-cn/problem/check-sum-of-square-numbers/

上一篇:Android查缺补漏(View篇)--事件分发机制源码分析


下一篇:Leetcode 69. Sqrt(x)