Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/indiecodermm/aoc-24

Advent of Code 2024 (GO)
https://github.com/indiecodermm/aoc-24

advent-of-code algorithms golang

Last synced: about 4 hours ago
JSON representation

Advent of Code 2024 (GO)

Awesome Lists containing this project

README

        

# 🎄 Advent of Code 2024

- [Advent of Code 2024](https://adventofcode.com/2024)

## Structure

```
.
├── data/
│ ├── answers.txt
│ ├── day-n.txt
├── dayN/
│ ├── main.go
│ ├── solve.go
│ ├── solve_test.go
├── utils/
│ ├── quick_sort.go
│ ├── file_helper.go
├── go.mod
```

## Tests

Run tests for each solution with:

```sh
go test ./dayN
```

Run all tests:
```
go test ./...
```