Skip to content

Commit 9c4f4d2

Browse files
2025 go 1.1 pass
1 parent 2c175dc commit 9c4f4d2

7 files changed

Lines changed: 4438 additions & 0 deletions

File tree

2025/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Advent of Code 2025 - Go
2+
3+
## Structure
4+
Each day is in its own folder (e.g., `day01`, `day02`).
5+
6+
## Running
7+
To run a day's solution:
8+
```bash
9+
cd dayXX
10+
go run main.go
11+
```
12+
13+
## Testing
14+
To run tests for a day:
15+
```bash
16+
cd dayXX
17+
go test -v
18+
```

0 commit comments

Comments
 (0)