summaryrefslogtreecommitdiff
path: root/progs/a664.py
blob: 60aa164a62a8d99a0e87d25c89742615a4340005 (plain)
1
2
3
4
def dict_depth(d):
    if isinstance(d, dict):
        return 1 + (max(map(dict_depth, d.values())) if d else 0)
    return 0