Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liolle/aoc2023
https://github.com/liolle/aoc2023
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/liolle/aoc2023
- Owner: liolle
- License: mit
- Created: 2023-12-23T18:13:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-24T21:05:22.000Z (9 months ago)
- Last Synced: 2024-11-14T02:13:30.457Z (3 months ago)
- Language: JavaScript
- Size: 229 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2023
This repository contains my solutions for the Advent of Code challenges. Advent of Code is an annual coding event that provides daily programming puzzles in the month of December, designed to be fun and challenging. You can find more about Advent of Code [here](https://adventofcode.com/).
## Table of Contents
- [About Advent of Code](#about-advent-of-code)
- [Folder Structure](#folder-structure)## About Advent of Code
Advent of Code is an advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. Participants can join the event at any time during December and solve a puzzle each day.
For more details, visit the [Advent of Code website](https://adventofcode.com/).
## Folder Structure
```bash
/AOC2023
├── dayX
└── part1
└── solution.mjs
└── helper.mjs
└── input.txt
└── part2
└── solution.mjs
└── helper.mjs
└── input.txt
```