Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Non Empty Lines solution in Uncategorized category for Non Empty Lines by vvm70
def non_empty_lines(text: str) -> int:
return len(list(filter(lambda s: (not s.isspace() and len(s) > 0), text.split('\n'))))
May 1, 2020