2017年12月15日 星期五

[LeetCode] 633. Sum of Square Numbers

轉自LeetCode

Given a non-negative integer c, your task is to decide whether there're two integers a and b such that a2 + b2 = c.
Example 1:
Input: 5
Output: True
Explanation: 1 * 1 + 2 * 2 = 5
Example 2:
Input: 3
Output: False
<Solution>

想法如下
  • a 和 b 一定會小於等於 c 的平方根,不然相加一定會超過 c
  • 當 c - a 的時候,如果 b 存在,那麼 b 一定是 c-a 的平方根
code 如下

C++

Java

沒有留言:

張貼留言