2018 day5

This commit is contained in:
2025-07-28 17:06:17 +02:00
parent 1abb50e2a6
commit 5eacc06307
2 changed files with 38 additions and 0 deletions

13
2018/day6/day6.py Normal file
View File

@@ -0,0 +1,13 @@
def dist(a, b):
"manhattan distance"
return abs(a.x - b.x) + abs(a.y - b.y)
def main(inp):
pass
if __name__ == "__main__":
import fileinput
inp = list(l.rstrip() for l in fileinput.input())
main(inp)