Question: 
Write a python function to find smallest number in a list.


Model's Code:
def smallest_num(lst):
    return min(lst)



Sample Correct Code:
def smallest_num(xs):
  return min(xs)



Asserts:
assert smallest_num([10, 20, 1, 45, 99]) == 1
assert smallest_num([1, 2, 3]) == 1
assert smallest_num([45, 46, 50, 60]) == 45


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

Test 62 of 974: 47/62 (75.80645161290323%): success