633. Sum of Square Numbers

题目描述和难度

  • 题目描述:

给定一个非负整数 c ,你要判断是否存在两个整数 ab,使得 a2 + b2 = c。

示例1:

输入: 5
输出: True
解释: 1 * 1 + 2 * 2 = 5

 

示例2:

输入: 3
输出: False

思路分析

求解关键:

参考解答

参考解答1


本篇文章的地址为 https://liweiwei1419.github.io/leetcode-solution/leetcode-0633-sum-of-square-numbers ,如果我的题解有错误,或者您有更好的解法,欢迎您告诉我 liweiwei1419@gmail.com