https://github.com/kennyrlienhard/adventofcode2020
Advent of Code 2020 solutions
https://github.com/kennyrlienhard/adventofcode2020
advent-of-code advent-of-code-2020 advent-of-code-typescript algorithms challenges typescript yarn
Last synced: 3 months ago
JSON representation
Advent of Code 2020 solutions
- Host: GitHub
- URL: https://github.com/kennyrlienhard/adventofcode2020
- Owner: kennyrlienhard
- Created: 2022-12-31T21:31:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-07T13:09:36.000Z (over 1 year ago)
- Last Synced: 2025-02-05T06:11:30.905Z (5 months ago)
- Topics: advent-of-code, advent-of-code-2020, advent-of-code-typescript, algorithms, challenges, typescript, yarn
- Language: TypeScript
- Homepage: https://adventofcode.com/2020
- Size: 30.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2020
[Advent of Code 2020](https://adventofcode.com/2020) in [TypeScript](https://www.typescriptlang.org/).
## Requirements
Install [Node.js](https://nodejs.org/en/) and [Yarn](https://yarnpkg.com/) package manager
## Installation
Run the following command to install the packages:
```
yarn
```## Usage
The main file is available under `/src/main.ts`. Here, you can pass the days to solve to function `solvePuzzles`. The source code and the data for each day is available in directory `/src`.
For development, run the following command so that the application automatically restarts when file changes are detected.
```
yarn run dev
```To run the main file once:
```
yarn start
```