Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f973ff2

Browse files
refactor 279
1 parent bdf1391 commit f973ff2

File tree

1 file changed

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

1 file changed

+0
-6
lines changed

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
import java.util.Arrays;
44

5-
/**
6-
* 279. Perfect Squares
7-
*
8-
* Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n.
9-
* For example, given n = 12, return 3 because 12 = 4 + 4 + 4; given n = 13, return 2 because 13 = 4 + 9.
10-
*/
115
public class _279 {
126
public static class Solution1 {
137
public int numSquares(int n) {

0 commit comments

Comments
 (0)