Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, …) which sum to n.
Example 1:1
2
3Input: n = 12
Output: 3
Explanation: 12 = 4 + 4 + 4.
Example 2:1
2
3Input: n = 13
Output: 2
Explanation: 13 = 4 + 9.
1 | int numSquares(int n) { |