Leetcode 633. Sum of Square Numbers

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Sum of Square Numbers

2. Solution

1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Solution {
public:
bool judgeSquareSum(int c) {
int root = int(sqrt(c)) + 1;
for(int i = 0; i < root; i++) {
int difference = c - i * i;
int j = int(sqrt(difference));
if(i * i + j * j == c) {
return true;
}
}
return false;
}
};

Reference

  1. https://leetcode.com/problems/sum-of-square-numbers/description/
如果有收获,可以请我喝杯咖啡!