Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/indiecodermm/aoc-24
- Owner: IndieCoderMM
- Created: 2024-12-02T15:15:31.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-16T15:49:26.000Z (about 1 month ago)
- Last Synced: 2024-12-25T07:48:06.096Z (22 days ago)
- Topics: advent-of-code, algorithms, golang
- Language: Go
- Homepage:
- Size: 101 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ./...
```