Question: 
Write a python function to choose points from two ranges such that no point lies in both the ranges.


Model's Code:
def find_Points(a1, a2, b1, b2):
    if a2 < b1:
        return (a2, b1)
    elif b2 < a1:
        return (a1, b2)
    else:
        return (a1, b2) if a1 < b1 else (b1, a2) if a2 > b2 else (a1, a2)



Sample Correct Code:
def find_Points(l1,r1,l2,r2): 
    x = min(l1,l2) if (l1 != l2) else -1
    y = max(r1,r2) if (r1 != r2) else -1
    return (x,y)


Asserts:
assert find_Points(5,10,1,5) == (1,10)
assert find_Points(3,5,7,9) == (3,9)
assert find_Points(1,5,2,8) == (1,8)


Tests:
Test 1 of 3: PASS
Test 2 of 3: FAIL: AssertionError()

Test 660 of 974: 493/660 (74.69696969696969%): failed