experiENS/avisstage/utils.py
2018-12-26 22:00:36 +01:00

6 lines
152 B
Python

# coding: utf-8
from functools import reduce
def choices_length (choices):
return reduce (lambda m, choice: max (m, len (choice[0])), choices, 0)