https://github.com/indiecodermm/aoc-24
Advent of Code 2024 (GO)
https://github.com/indiecodermm/aoc-24
advent-of-code algorithms golang
Last synced: 4 months 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 (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-16T15:49:26.000Z (7 months ago)
- Last Synced: 2025-01-15T23:50:01.451Z (6 months 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 ./...
```