experiENS/avisstage/utils.py

7 lines
152 B
Python
Raw Normal View History

2017-04-04 00:28:25 +02:00
# coding: utf-8
2018-12-26 22:00:36 +01:00
from functools import reduce
2017-04-04 00:28:25 +02:00
def choices_length (choices):
return reduce (lambda m, choice: max (m, len (choice[0])), choices, 0)