Problem 1103. Right Triangle Side Lengths (Inspired by Project Euler Problem 39)

Created by @bmtran

If p is the perimeter of a right angle triangle with integral length sides, { a, b, c }, there are exactly three solutions for p = 120.

{[20,48,52], [24,45,51], [30,40,50]}

Given any value of p, return a cell array whose elements are the sorted side lengths of a possible right triangle whose perimeter is p. Furthermore, the elements of the output should be sorted by their shortest side length.

Tags

Problem Group

17 solvers submitted 47 solutions (2.76 solutions/solver).

Solution Comments