All MicroEvals
Write a python function to find the length of the smallest l...
Create MicroEval
Header image for Write a python function to find the length of the smallest l...

Write a python function to find the length of the smallest l...

Prompt

Write a python function to find the length of the smallest list in a list of lists. Your function should satisfy these tests: ```python 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 ```

Answer guidance

Reference solution: def Find_Min_Length(lst): minLength = min(len(x) for x in lst ) return minLength