https://github.com/brayevalerien/aoc-2023
My solutions for the Advent of Code 2023, solved in V
https://github.com/brayevalerien/aoc-2023
aoc aoc-2023 aoc-2023-in-v vlang
Last synced: 6 months ago
JSON representation
My solutions for the Advent of Code 2023, solved in V
- Host: GitHub
- URL: https://github.com/brayevalerien/aoc-2023
- Owner: brayevalerien
- License: mit
- Created: 2023-12-01T09:30:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-31T16:32:42.000Z (about 2 years ago)
- Last Synced: 2025-02-11T09:51:28.293Z (11 months ago)
- Topics: aoc, aoc-2023, aoc-2023-in-v, vlang
- Language: V
- Homepage: https://adventofcode.com/2023
- Size: 71.3 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AOC-2023
My solutions for the Advent of Code 2023, solved in [V](https://github.com/vlang/v)!
Total progress:

## How to run
If you want to run the program for a specific day "XX" and a problem "Y" (1 or 2), use:
```bash
v run ./dayXX/pbY/
```
> Note: you will need to add the input file as `input.txt` in the `./dayXX/pbY/` directory since I cannot provide the inputs on github as stated in the [AOC rules](https://adventofcode.com/2023/about).
## Content
This repository contains one directory per day and each day contains two directories: one for each problem of the day (`./dayXX/pbY/` for problem Y of day XX).
## Useful links
- [The V langage](https://github.com/vlang/v)
- [AOC 2023](https://adventofcode.com)