Compare commits
4 commits
0f1bc9cf2a
...
57a2d60dc0
Author | SHA1 | Date | |
---|---|---|---|
Bruno BELANYI | 57a2d60dc0 | ||
Bruno BELANYI | a968844df2 | ||
Bruno BELANYI | 4195a9e321 | ||
Bruno BELANYI | 9d9dec0715 |
32
2021/d02/ex1/ex1.py
Executable file
32
2021/d02/ex1/ex1.py
Executable file
|
@ -0,0 +1,32 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import itertools
|
||||
import sys
|
||||
from typing import List
|
||||
|
||||
|
||||
def solve(input: List[str]) -> int:
|
||||
x, y = 0, 0
|
||||
|
||||
for instruction in input:
|
||||
dir, length = instruction.split(" ")
|
||||
length = int(length)
|
||||
if dir == "forward":
|
||||
x += length
|
||||
elif dir == "down":
|
||||
y += length
|
||||
elif dir == "up":
|
||||
y -= length
|
||||
else:
|
||||
assert False
|
||||
|
||||
return x * y
|
||||
|
||||
|
||||
def main() -> None:
|
||||
input = [line.strip() for line in sys.stdin.readlines()]
|
||||
print(solve(input))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
1000
2021/d02/ex1/input
Normal file
1000
2021/d02/ex1/input
Normal file
File diff suppressed because it is too large
Load diff
33
2021/d02/ex2/ex2.py
Executable file
33
2021/d02/ex2/ex2.py
Executable file
|
@ -0,0 +1,33 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import itertools
|
||||
import sys
|
||||
from typing import List
|
||||
|
||||
|
||||
def solve(input: List[str]) -> int:
|
||||
x, y, aim = 0, 0, 0
|
||||
|
||||
for instruction in input:
|
||||
dir, length = instruction.split(" ")
|
||||
length = int(length)
|
||||
if dir == "forward":
|
||||
x += length
|
||||
y += length * aim
|
||||
elif dir == "down":
|
||||
aim += length
|
||||
elif dir == "up":
|
||||
aim -= length
|
||||
else:
|
||||
assert False
|
||||
|
||||
return x * y
|
||||
|
||||
|
||||
def main() -> None:
|
||||
input = [line.strip() for line in sys.stdin.readlines()]
|
||||
print(solve(input))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
1000
2021/d02/ex2/input
Normal file
1000
2021/d02/ex2/input
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue