def longest_common_prefix()

in understanding_rl_vision/rl_clarity/interface.py [0:0]


def longest_common_prefix(l):
    l = set([s[: min(map(len, l))] for s in l])
    while len(l) > 1:
        l = set([s[:-1] for s in l])
    return list(l)[0]