Day 6 (cleanup #2)

This commit is contained in:
Sebastian Seedorf
2020-12-06 14:09:35 +01:00
parent 223c4d87d8
commit e06d2de6eb
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
lines = (set([c for c in x.strip()]) for x in open("input.txt"))
lines = (set(x.strip()) for x in open("input.txt"))
current = set()
count = 0

View File

@@ -1,4 +1,4 @@
lines = (set([c for c in x.strip()]) for x in open("input.txt"))
lines = (set(x.strip()) for x in open("input.txt"))
current = set()
count = 0