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

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

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:

![progress bar](https://geps.dev/progress/32)

## 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)