Problem Description
Given an integer n, return the number of square triples (a, b, c) such that a² + b² = c² and 1 <= a, b, c <= n.
Key Insights
- A square triple is defined by the Pythagorean theorem: a² + b² = c².
- The values for a, b, and c must be constrained between 1 and n.
- Each valid combination of (a, b) that satisfies a² + b² = c² must result in c being a whole number and within the defined range.
Space and Time Complexity
Time Complexity: O(n²)
Space Complexity: O(1)
Solution
To solve this problem, we use a brute-force approach where we iterate through all possible values of a and b from 1 to n. For each pair (a, b), we calculate c using the formula c = sqrt(a² + b²). We then check if c is an integer and within the range of 1 to n. If it is, we count the valid square triple. This method effectively enumerates all possible pairs and checks the necessary condition.