- You are required to check if a given set of numbers is a valid pythagorean triplet.
- Take as input three numbers a, b and c.
- Print true if they can form a pythagorean triplet and false otherwise.
Example 1:
Input: 5 3 4 Output: true
Constraints:
1 <= a <= 10^9
1 <= b <= 10^9
1 <= c <= 10^9