Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajitsinghkamal/deno-aoc-2024
Advent of code 2014 with Deno
https://github.com/ajitsinghkamal/deno-aoc-2024
aoc-2024-in-deno deno typescript
Last synced: 23 days ago
JSON representation
Advent of code 2014 with Deno
- Host: GitHub
- URL: https://github.com/ajitsinghkamal/deno-aoc-2024
- Owner: ajitsinghkamal
- License: mit
- Created: 2024-12-06T22:38:41.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-14T01:28:00.000Z (24 days ago)
- Last Synced: 2024-12-14T02:23:42.709Z (24 days ago)
- Topics: aoc-2024-in-deno, deno, typescript
- Language: TypeScript
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deno AoC2024
Advent of code 2024 [^1] with Deno [^2][^3]
> [!NOTE]
> 👨🏻💻 In Progress## Prerequisite
- Setup deno locally [See](https://docs.deno.com/runtime/getting_started/installation/)
- Clone and setup this repo
- Install project deps with `deno install`## How to run
```
deno task main --day=
```If the problem for that day had multiple parts you can run only specific part by using `--part` argument
```
deno task main --day= --part=2
```You can also directly run the problem solution
```
deno run './problems/day-/mod.ts'
```## Testing
```
deno task tests
```[^1]: [Official Site](https://adventofcode.com/2024)
[^2]: [Deno](https://docs.deno.com/)
[^3]: [Deno - Advent of code](https://deno.com/blog/advent-of-code-2024)