Question: 
Write a python function to check whether the elements in a list are same or not.


Model's Code:
def chkList(lst):
    return all(x == lst[0] for x in lst)



Sample Correct Code:
def chkList(lst): 
    return len(set(lst)) == 1


Asserts:
assert chkList(['one','one','one']) == True
assert chkList(['one','Two','Three']) == False
assert chkList(['bigdata','python','Django']) == False


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

Test 201 of 974: 148/201 (73.6318407960199%): success