You are viewing a single comment's thread. Return to all comments →
Im so upset i couldnt find any oneliner able to work ..
def depth(elem, level= 0): global maxdepth [depth(e,level+1) for e in elem] maxdepth = max(maxdepth, level + 1)
Seems like cookies are disabled on this browser, please enable them to open this website
XML2 - Find the Maximum Depth
You are viewing a single comment's thread. Return to all comments →
Im so upset i couldnt find any oneliner able to work ..