leetle

Daily challenge for 2025-10-10

283. Sum of Square Numbers

Given a non-negative integer c, return True if there exist two integers a and b such that a^2 + b^2 = c, otherwise return False.

Example:
Input: c = 5
Output: True
Explanation: 1^2 + 2^2 = 5

Run this challenge interactively in Python or JavaScript when the app loads.