Question: def max_length(obj: Union[int, list])-> int: *** Return the maximum length of any list in nested list . The *maximum length* of a nested list
def max_length(obj: Union[int, list])-> int: *** Return the maximum length of any list in nested list . The *maximum length* of a nested list is defined as: 1.0, if is a number. 2. The maximum of len(obj) and the lengths of the nested lists contained in , if is a list. >>> max_length(17) 0 >>> max_length([1, 2, [1, 2], 4]) 4 >>> max_length([1, 2, [1, 2, [3], 4, 5], 4]) 5 Implement this method
Step by Step Solution
3.44 Rating (154 Votes )
There are 3 Steps involved in it
9 mainpy Us GDB 0 4 5 1 from typing import Union List ANM 56 2 3 def maxlengthobj Unionint Listi... View full answer
Get step-by-step solutions from verified subject matter experts
