My Advent of Code solutions in Python. kevinyap.ca/2019/12/going-fast-in-advent-of-code/
advent-of-code python
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update day21.py

+1 -1
+1 -1
2016/day21.py
··· 8 8 data = deque(data) 9 9 10 10 if unscramble: 11 - operations.reverse() 11 + operations = reversed(operations) 12 12 13 13 for line in operations: 14 14 if line.startswith('swap position'):