Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Completely Empty by yoichi
def completely_empty(val):
return all(getattr(e, '__iter__', None) and completely_empty(e) for e in val)
June 2, 2018
Comments: