Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
map is not the TypeErritory solution in Clear category for How Deep by veky
def how_deep(structure):
try: return 1 + max(map(how_deep, structure), default=0)
except TypeError: return 0
April 18, 2019
Comments: