Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/riimu/advent-of-code-2023
Advent of Code 2023 solutions
https://github.com/riimu/advent-of-code-2023
Last synced: about 2 months ago
JSON representation
Advent of Code 2023 solutions
- Host: GitHub
- URL: https://github.com/riimu/advent-of-code-2023
- Owner: Riimu
- License: mit
- Created: 2023-12-02T09:33:03.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-19T11:59:51.000Z (about 1 year ago)
- Last Synced: 2023-12-19T15:59:43.413Z (about 1 year ago)
- Language: PHP
- Size: 396 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2023 solutions
This repository contains my solutions for the Advent of Code 2023. Explore at
your own peril.## Usage
The solutions are written in PHP and require PHP to be available on your
system to run.In order to list all the implemented task commands, you may run:
```shell
php bin/console list
```### Running tasks
All the task commands are in the format of `task:DayNPartN` and take path to
the input file as the argument. For example:```shell
php bin/console task:Day5Part2 input/day-5-input.txt
```### Generating new task files from template
To quickly generate new files for a task from the templates, you can use the
following command```shell
php bin/console generate-task
```## Copyright
This library is Copyright (c) 2023 Riikka Kalliomäki.
See LICENSE for license and copying information.