Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dickeyy/adventofcode

My solutions for Advent of Code for all the years I've done it :)
https://github.com/dickeyy/adventofcode

advent-of-code bun go typescript

Last synced: 2 days ago
JSON representation

My solutions for Advent of Code for all the years I've done it :)

Awesome Lists containing this project

README

        

# Advent of Code

These are my solutions for [Advent Of Code](https://adventofcode.com)

| Year | Solutions | Language | Stars ⭐️ |
| ---------------------------- | ------------------ | ---------- | --------- |
| 2024 (Current year) | [Soultions](/2024) | Go | 50/50 |
| 2023 (My first year of AoC!) | [Soultions](/2023) | TypeScript | 26/50 |
| 2015 | [Soultions](/2015) | Go | 36/50 |

---

The [./new-day.sh](./new-day.sh) script generates the boilerplate for a new day. To use it, run:

```bash
source ./new-day.sh # this will cd into the new folder

# or

./new-day.sh # this will not cd into the new folder
```

Personally, I have a alias for this `alias nd='source ./new-day.sh'`.