Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/darylducks17/adventofcode2024


https://github.com/darylducks17/adventofcode2024

Last synced: 12 days ago
JSON representation

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