Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)