Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/petitpotiron/advent-of-code-2015
These are my solutions to the 2015 Advent Of Code (coded in 2021 and later)
https://github.com/petitpotiron/advent-of-code-2015
advent advent-of-code advent-of-code-2015 aoc aoc-2015 challenge christmas javascript js problem-solving problems python santa
Last synced: 26 days ago
JSON representation
These are my solutions to the 2015 Advent Of Code (coded in 2021 and later)
- Host: GitHub
- URL: https://github.com/petitpotiron/advent-of-code-2015
- Owner: PetitPotiron
- License: mit
- Created: 2021-12-01T18:25:55.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-21T17:10:26.000Z (12 months ago)
- Last Synced: 2024-10-03T18:55:53.509Z (about 1 month ago)
- Topics: advent, advent-of-code, advent-of-code-2015, aoc, aoc-2015, challenge, christmas, javascript, js, problem-solving, problems, python, santa
- Language: Python
- Homepage:
- Size: 81.1 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-2015
This repository contains my code for the [Advent Of Code](https://adventofcode.com) ([what is it?](#what-is-it))2015. You can find the challenges [here](https://adventofcode.com/2015). I mainly used Python but I also took this opportunity to improve my skills in Rust, JavaScript and a bit of other languages. Enjoy!## How to use this repository?
In the `src` folder, you can find one folder for each day of the challenge (from `day-1` to `day-25`). In these folders, there are two folders: `first-part` and `second-part` with my solutions for the first and the second parts of the challenge. In these directories, there are three files. Look below :
* `day-x` My solutions for the challenge of the day `x`.
* * `README.md` are the instructions of the challenge, the explanation of my solutions and my feelings about the problem.
* * `x-part` contains the solutions for the xth part of the challenge
* * * `main.py`, `index.js`, or `main.rs`. It's the code which completes the challenge, respectively in [Python](https://www.python.org), [JavaScript](https://w.wiki/7z9P) or [Rust](https://www.rust-lang.org).
* * * `input.txt` is the input with what we are going to work with the code (*If the input is the same for both parts, this file is located in the `day-x` folder*).
* * * `output.txt` is the result obtained, once the code has been run.
Please keep in mind all this work is under the [MIT License](https://github.com/PetitPotiron/advent-of-code-2015/blob/main/LICENSE). Copyright (c) December 2021 - PetitPotiron.
In a nutshell :
* You can do whatever you want with it, just make sure to include the same `LICENSE` file, and to attribute myself.## What is it?
The Advent Of Code is an online advent calendar which contains programming challenges. Each day, you can solve a problem and maybe enter the leaderboard (yes, there is one!). It is completely free, and you can share solutions since the leaderboard is full. I didn't participate to the 2015 edition, but I created these codes when training on this previous edition.