Question: 
Write a python function to find the minimum length of sublist.


Model's Code:
def Find_Min_Length(lst):
    return min(len(sublist) for sublist in lst)



Sample Correct Code:
def Find_Min_Length(lst):  
    minLength = min(len(x) for x in lst )
    return minLength 


Asserts:
assert Find_Min_Length([[1],[1,2]]) == 1
assert Find_Min_Length([[1,2],[1,2,3],[1,2,3,4]]) == 2
assert Find_Min_Length([[3,3,3],[4,4,4,4]]) == 3


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

Test 95 of 974: 73/95 (76.84210526315789%): success