Question: 
Write a python function to find the sublist having maximum length.


Model's Code:
def Find_Max(lists):
    return max(lists, key=len)



Sample Correct Code:
def Find_Max(lst): 
    maxList = max((x) for x in lst) 
    return maxList


Asserts:
assert Find_Max([['A'],['A','B'],['A','B','C']]) == ['A','B','C']
assert Find_Max([[1],[1,2],[1,2,3]]) == [1,2,3]
assert Find_Max([[1,1],[1,2,3],[1,5,6,1]]) == [1,5,6,1]


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

Test 418 of 974: 304/418 (72.72727272727273%): success