Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mertturkmenoglu/aoc2023
Advent of Code 2023 solutions
https://github.com/mertturkmenoglu/aoc2023
advent-of-code advent-of-code-2023 aoc ts typescript
Last synced: 22 days ago
JSON representation
Advent of Code 2023 solutions
- Host: GitHub
- URL: https://github.com/mertturkmenoglu/aoc2023
- Owner: mertturkmenoglu
- Created: 2023-12-01T07:34:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-20T09:34:22.000Z (12 months ago)
- Last Synced: 2024-01-20T10:33:57.146Z (12 months ago)
- Topics: advent-of-code, advent-of-code-2023, aoc, ts, typescript
- Language: TypeScript
- Homepage:
- Size: 250 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2023
- This repository shows my [Advent of Code 2023](https://adventofcode.com/2023) solutions.
- Please feel free to clone, change, and contribute.
- You can contact me on [Twitter](https://twitter.com/capreaee).---
## Requirements
- You must have `Node.js` version 20 or later installed on your computer.
- You can use any Node package managers. `pnpm` is suggested.## How to Run
- Clone the repository.
- Install the dependencies: `pnpm install`
- To run a specific solution, give `day` as a CLI argument to the `dev` script. Example:```bash
pnpm dev day1
```- To create a new directory with boilerplate code, use the `aoc` script with `day` as a CLI argument. Example:
```bash
pnpm aoc day1
```