https://github.com/imp-dance/advent_of_code
My solutions for Advent of Code
https://github.com/imp-dance/advent_of_code
Last synced: 3 months ago
JSON representation
My solutions for Advent of Code
- Host: GitHub
- URL: https://github.com/imp-dance/advent_of_code
- Owner: imp-dance
- Created: 2022-12-01T08:35:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-13T19:27:31.000Z (6 months ago)
- Last Synced: 2025-01-24T14:42:08.357Z (4 months ago)
- Language: JavaScript
- 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
```
____
;` `'-._
/ \ /\
/` \ | ;
/ \ | |
/ `\ | |
/ \_ / |
; / `\ |
,|_ __ \__/ |
_\_o/_( |_
/`"=/\==""=="=="=="=="`\
| )/ |
\ /
/';=""==""==""==""==";`\
| /` /~\ /~\ `\ |
| \ _ \o/ \o/ _ / |
\ ; (_) __ (_) ; /
/ |\_.-""(__)""-._/| \
| \ /\ / |
/ '.___.'__'.___.' \
| \/ |
| |
\ /
jgs | |
\ /
'. .'
'-.__ __.-'
'---'--'---'
```My collection of Advent of Code solutions. Written in Javascript.
## Structure
```
> 2022
> data
> day-1.js
> day-2.js
> day-1.js
> day-2.js
```## Running the code
With node installed:
```bash
$ node 2022/day-3.js
> 7742 # part 1 solution
> 2276 # part 2 solution
```