Question: 
Write a function to find the list of lists with maximum length.


Model's Code:
def max_length(lst):
    max_len = max(len(sublist) for sublist in lst)
    for sublist in lst:
        if len(sublist) == max_len:
            return (max_len, sublist)



Sample Correct Code:
def max_length(list1):
    max_length = max(len(x) for x in  list1 )  
    max_list = max((x) for x in   list1)
    return(max_length, max_list)


Asserts:
assert max_length([[0], [1, 3], [5, 7], [9, 11], [13, 15, 17]])==(3, [13, 15, 17])
assert max_length([[1], [5, 7], [10, 12, 14,15]])==(4, [10, 12, 14,15])
assert max_length([[5], [15,20,25]])==(3, [15,20,25])


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

Test 290 of 974: 209/290 (72.06896551724138%): success