Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neofox/advent_of_code
Advent of Code 2023 Solutions
https://github.com/neofox/advent_of_code
advent-of-code advent-of-code-2023
Last synced: about 2 months ago
JSON representation
Advent of Code 2023 Solutions
- Host: GitHub
- URL: https://github.com/neofox/advent_of_code
- Owner: Neofox
- License: mit
- Created: 2023-12-08T04:00:54.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-13T07:35:15.000Z (about 1 year ago)
- Last Synced: 2024-04-13T18:58:21.388Z (9 months ago)
- Topics: advent-of-code, advent-of-code-2023
- Language: JavaScript
- Homepage:
- Size: 97.7 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 Solutions
This repository contains my solutions to the Advent of Code challenges. Advent of Code is an annual coding event with daily programming puzzles throughout the month of December.
## Table of Contents
- [Solutions](#solutions)
- [Folder Structure](#folder-structure)
- [Usage](#usage)
- [License](#license)## Solutions
You can find the solutions for each day in the corresponding folders. The solutions are implemented in Javascript (Node.js), and each folder contains the source code along with any necessary input files.
Feel free to explore the solutions and adapt them to your needs. If you have any questions or suggestions for improvement, please open an issue or submit a pull request.
## Folder Structure
The repository follows a simple folder structure:
- `day_01`, `day_02`, etc.: Folders for each day's challenge.
- `index.js`: Source code for the solution.
- `input.txt`: Input file for the respective day's challenge.
- `test.txt`: Test file (reduce example input file) for the respective day's challenge.## Usage
To run a specific day's solution, you can use the following steps:
1. Navigate to the corresponding day's folder.
2. Run the solution script (e.g., `node index.js`).Make sure you have node installed on your machine.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.