Skip to content

Instantly share code, notes, and snippets.

@Enet4
Last active November 7, 2019 20:12
Show Gist options
  • Save Enet4/7e243cdb733788ae1c9882b108b435c8 to your computer and use it in GitHub Desktop.
Save Enet4/7e243cdb733788ae1c9882b108b435c8 to your computer and use it in GitHub Desktop.
# Best real time: 2.05 s
def is_blank(s):
return not s or s.isspace()
k = 0
for line in open("biggest.txt"):
if is_blank(line):
k += 1
print(k)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment