Skip to main content
Submitted by admin on 18 November 2023
coding-cability

Greek mathematician Pythagoras gave famous theorem to relate sides of right angel triangle:

Image removed.

Ask candidate to write a function in any higher level language to discover all Pythagorean triplets a, b and c where a,b,c > 0 and less than given number N, such that:

a^2 + b^2 = c^2

For example, (3, 4, 5) is a Pythagorean triplet.

Once candidate writes a brut-force solution, ask to optimize the solution.