Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Non Empty Lines solution in Clear category for Non Empty Lines by JimmyCarlos
def non_empty_lines(s) -> int:
return len([x for x in s.split("\n") if x.strip()])
July 29, 2020
Comments: