633. Sum of Square Numbers
LeetCode 633. Sum of Square Numbers
Description
Input: c = 5
Output: true
Explanation: 1 * 1 + 2 * 2 = 5Input: c = 3
Output: falseInput: c = 4
Output: trueTags
Solution
Complexity
Code
Reference
Last updated