Problem 44476. How many unique Pythagorean triples?
For a given integer n, return all Pythagorean triples that inlude numbers smaller or equal to n.
A Pythagorean triple consist of three positive integers {a, b, c} such that:
a < b < c, a^2 + b^2 = c^2
The triples should be retured in a matrix with tree columns, where each row contains a different triple. Every row needs to be sorted in ascending order ( a in the first column, b in the second and c in the third), and the first column must also be sorted.
Example:
Input: n = 16
Output: mat = [3, 4, 5
5, 12, 13
6, 8, 10
9, 12, 15]
If n is not an integer, or it is smaller than 5, the function should return an empty matrix.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers148
Suggested Problems
-
1455 Solvers
-
Project Euler: Problem 10, Sum of Primes
2035 Solvers
-
Set the array elements whose value is 13 to 0
1420 Solvers
-
Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
241 Solvers
-
Sum the numbers on the main diagonal
599 Solvers
More from this Author25
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!