Question: 
Write a python function to determine whether all the numbers are different from each other are not.


Model's Code:
def test_distinct(lst):
    return len(lst) == len(set(lst))



Sample Correct Code:
def test_distinct(data):
  if len(data) == len(set(data)):
    return True
  else:
    return False;


Asserts:
assert test_distinct([1,5,7,9]) == True
assert test_distinct([2,4,5,5,7,9]) == False
assert test_distinct([1,2,3]) == True


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

Test 46 of 974: 35/46 (76.08695652173914%): success