Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darylducks17/adventofcode2024
https://github.com/darylducks17/adventofcode2024
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/darylducks17/adventofcode2024
- Owner: darylducks17
- Created: 2024-12-17T18:59:58.000Z (14 days ago)
- Default Branch: main
- Last Pushed: 2024-12-17T23:41:34.000Z (14 days ago)
- Last Synced: 2024-12-18T00:31:06.625Z (14 days ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AdventofCode2024
## [Day 1](https://adventofcode.com/2024/day/1)
### [Part 1](day1/answers.py)
- split the list into left and right list
- sort the lists from smallest to largest (ascending)
- subtract the numbers from both lists to find distance
- calculate the sum of the distances### [Part 2](day1/answers.py)
- split the list into left and right list
- sort the lists from smallest to largest (ascending)
- count the occurrences of each number in the right list
- calculate the similarity score by multiplying the number by its count in the right list