Question: 
Write a python function to check whether the triangle is valid or not if sides are given.


Model's Code:
def check_Validity(a, b, c):
    return a + b > c and a + c > b and b + c > a



Sample Correct Code:
def check_Validity(a,b,c):  
    if (a + b <= c) or (a + c <= b) or (b + c <= a) : 
        return False
    else: 
        return True        


Asserts:
assert check_Validity(1,2,3) == False
assert check_Validity(2,3,5) == False
assert check_Validity(7,10,5) == True


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 334 of 974: 241/334 (72.15568862275448%): success