is_valid_triangle(a, b, c) that returns True if three side lengths can form a valid triangle (the sum of any two sides must exceed the third side), and False otherwise.is_valid_triangle(3, 4, 5)
True
3+4>5, 4+5>3, and 3+5>4.
is_valid_triangle(1, 2, 10)
False
1+2 is not greater than 10.
You need to check the triangle inequality for all three pairings.
Combine the three checks with `and`.