Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kennyrlienhard/adventofcode2015
Advent of Code 2015 solutions
https://github.com/kennyrlienhard/adventofcode2015
advent-of-code advent-of-code-2015 advent-of-code-typescript algorithms challenges javascript typescript
Last synced: about 1 month ago
JSON representation
Advent of Code 2015 solutions
- Host: GitHub
- URL: https://github.com/kennyrlienhard/adventofcode2015
- Owner: kennyrlienhard
- Created: 2022-01-23T20:51:02.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-30T10:47:10.000Z (6 months ago)
- Last Synced: 2024-07-31T09:13:58.936Z (6 months ago)
- Topics: advent-of-code, advent-of-code-2015, advent-of-code-typescript, algorithms, challenges, javascript, typescript
- Language: TypeScript
- Homepage:
- Size: 2.06 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2015
[Advent of Code 2015](https://adventofcode.com/2015) 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 specify the days to solve in the variable `DAYS_TO_SOLVE`. The source code for each day is available in directory `/src`. The related data can be found in directory `/src/data`.
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
```