Do day 3.

This commit is contained in:
2023-12-03 17:23:36 -05:00
parent ea0df866b7
commit 57e7fade4d
3 changed files with 143 additions and 0 deletions

40
d4.py Normal file
View File

@@ -0,0 +1,40 @@
import re
EXAMPLE = """
"""
def clean(text: str) -> list[str]:
return list(filter(lambda l: l.strip() != "", text.splitlines()))
def solve(lines: list[str]):
s = 0
for (i, line) in enumerate(lines):
print(i, line)
return s
def solve2(lines: list[str]):
s = 0
for (i, line) in enumerate(lines):
print(i, line)
return s
def main():
example = clean(EXAMPLE)
print("Example 1:", solve(example))
return
data = clean(open("i4.txt").read())
print("Solution 1:", solve(data))
return
example = clean(EXAMPLE)
print("Example 2:", solve2(example))
return
data = clean(open("i4.txt").read())
print("Solution 2:", solve2(data))
return
if __name__ == "__main__":
main()