summaryrefslogtreecommitdiff
path: root/progs/a578.py
blob: f8802cfe0140794a2e7799ff0c071535e8521e39 (plain)
1
2
3
4
5
6
7
def decode_list(alist):
    def aux(g):
        if isinstance(g, list):
            return [(g[1], range(g[0]))]
        else:
            return [(g, [0])]
    return [x for g in alist for x, R in aux(g) for i in R]