[0633] 平方数之和
- GitHub
- http://leetcode.xuezhisd.top/post/4235286a.html
- https://leetcode.com/problems/sum-of-square-numbers
- https://leetcode-cn.com/problems/sum-of-square-numbers
题目描述
给定一个非负整数 c
,你要判断是否存在两个整数 a
和 b
,使得 a2 + b2 = c。
示例1:
输入: 5 输出: True 解释: 1 * 1 + 2 * 2 = 5
示例2:
输入: 3 输出: False
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |