Skip to content

Commit 529a8c5

Browse files
refactor 633
1 parent 603fa88 commit 529a8c5

File tree

1 file changed

+0
-14
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-14
lines changed

src/main/java/com/fishercoder/solutions/_633.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 633. Sum of Square Numbers
5-
*
6-
* Given a non-negative integer c, your task is to decide whether there're two integers a and b such that a2 + b2 = c.
7-
8-
Example 1:
9-
Input: 5
10-
Output: True
11-
Explanation: 1 * 1 + 2 * 2 = 5
12-
13-
Example 2:
14-
Input: 3
15-
Output: False
16-
*/
173
public class _633 {
184
public static class Solution1 {
195
public boolean judgeSquareSum(int c) {

0 commit comments

Comments
 (0)