Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Non Empty Lines by eugene100372
def non_empty_lines(text: str) -> int:
return sum((bool(line.split()) for line in text.splitlines()))
April 30, 2020
Comments: