Question: 
Write a python function to find the minimum of two numbers.


Model's Code:
def minimum(a, b):
    return a if a < b else b



Sample Correct Code:
def minimum(a,b):   
    if a <= b: 
        return a 
    else: 
        return b 


Asserts:
assert minimum(1,2) == 1
assert minimum(-5,-4) == -5
assert minimum(0,0) == 0


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

Test 404 of 974: 292/404 (72.27722772277228%): success