Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Double try solution in Clear category for Completely Empty by amandel
def completely_empty(val):
try:
it = iter(val)
except:
return False
else:
try:
x=next(it)
return completely_empty(x) and all(map(completely_empty,it))
except:
return True
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert completely_empty([]) == True, "First"
assert completely_empty([1]) == False, "Second"
assert completely_empty([[]]) == True, "Third"
assert completely_empty([[],[]]) == True, "Forth"
assert completely_empty([[[]]]) == True, "Fifth"
assert completely_empty([[],[1]]) == False, "Sixth"
assert completely_empty([0]) == False, "[0]"
assert completely_empty(['']) == True
assert completely_empty([[],[{'':'No WAY'}]]) == True
print('Done')
Jan. 22, 2025