-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0633.go
48 lines (41 loc) · 1001 Bytes
/
0633.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Source: https://leetcode.com/problems/sum-of-square-numbers
// Title: Sum of Square Numbers
// Difficulty: Medium
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Given a non-negative integer c, decide whether there're two integers a and b such that a^2 + b^2 = c.
//
// Example 1:
//
// Input: c = 5
// Output: true
// Explanation: 1 * 1 + 2 * 2 = 5
//
// Example 2:
//
// Input: c = 3
// Output: false
//
// Constraints:
//
// 0 <= c <= 2^31 - 1
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package main
import "math"
func judgeSquareSum(c int) bool {
for a := 0; a <= c; a++ {
a2 := a * a
if a2 > c {
return false
}
b := math.Sqrt(float64(c - a2))
if b == math.Trunc(b) {
return true
}
if float64(a) >= b {
return false
}
}
return false
}