Skip to content

Commit a622d65

Browse files
committed
day 25
1 parent ca4735a commit a622d65

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
|[22](https://adventofcode.com/2020/day/22)|Crab Combat|[py](/day22/main.py)|
2727
|[23](https://adventofcode.com/2020/day/23)|Crab Cups|[py](/day23/main.py)|
2828
|[24](https://adventofcode.com/2020/day/24)|Lobby Layout|[py](/day24/main.py)|
29-
|[25](https://adventofcode.com/2020/day/25)|-|-|
29+
|[25](https://adventofcode.com/2020/day/25)|Combo Breaker|[py](/day25/main.py)|

day25/main.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
with open("input.txt") as f:
2+
public_key_card, public_key_door = [int(x.strip()) for x in f]
3+
4+
def calc_loop_size(public_key):
5+
subject_number = 7
6+
n = 1
7+
i = 0
8+
while True:
9+
n = (n * subject_number) % 20201227
10+
if n == public_key:
11+
return i+1
12+
i += 1
13+
14+
def calc_encryption_key(subject_number, loop_size):
15+
n = 1
16+
for i in range(loop_size):
17+
n = (n * subject_number) % 20201227
18+
return n
19+
20+
loop_size = calc_loop_size(public_key_card)
21+
enc_key = calc_encryption_key(public_key_door, loop_size)
22+
print(enc_key)

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy