5 lines
122 B
Python
5 lines
122 B
Python
|
# coding: utf-8
|
||
|
|
||
|
def choices_length (choices):
|
||
|
return reduce (lambda m, choice: max (m, len (choice[0])), choices, 0)
|