Question: 
Write a python function to check whether the given list contains consecutive numbers or not.


Model's Code:
def check_Consecutive(lst):
    return sorted(lst) == list(range(min(lst), max(lst) + 1)) and len(lst) == len(set(lst))



Sample Correct Code:
def check_Consecutive(l): 
    return sorted(l) == list(range(min(l),max(l)+1)) 


Asserts:
assert check_Consecutive([1,2,3,4,5]) == True
assert check_Consecutive([1,2,3,5,6]) == False
assert check_Consecutive([1,2,1]) == False


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

Test 472 of 974: 346/472 (73.30508474576271%): success