Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wiremoons/adventofcode2015
Solutions for Advent of Code puzzles: https://adventofcode.com/2015
https://github.com/wiremoons/adventofcode2015
aoc aoc-2015-in-cpp aoc-2015-in-deno aoc2015 cpp20 deno fortran typesctipt
Last synced: about 2 months ago
JSON representation
Solutions for Advent of Code puzzles: https://adventofcode.com/2015
- Host: GitHub
- URL: https://github.com/wiremoons/adventofcode2015
- Owner: wiremoons
- License: mit
- Created: 2022-03-13T07:59:43.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-18T20:11:27.000Z (almost 3 years ago)
- Last Synced: 2024-11-07T01:33:18.411Z (3 months ago)
- Topics: aoc, aoc-2015-in-cpp, aoc-2015-in-deno, aoc2015, cpp20, deno, fortran, typesctipt
- Language: C++
- Homepage:
- Size: 88.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent Of Code 2015
My attempts at solutions for _Advent of Code (AoC) 2015_ puzzles that can be
found here: https://adventofcode.com/2015## Daily Solutions
Below links to each days puzzle I have solved so far:
- [Day One - Part 1 solved with Fortran](./Day-01/fortran/app/aoc_day01_p1.f90)
and
[Day One - Part 2 solved with Fortran](./Day-01/fortran/app/aoc_day01_p2.f90)
- [Day One - Part 1 solved with Deno](./Day-01/deno/aoc_day01_p1.ts) and
[Day One - Part 2 solved with Deno](./Day-01/deno/aoc_day01_p2.ts)
- [Day One - Part 1 solved with C++](./Day-01/cpp/aoc_day01_p1.cpp) and
[Day One - Part 2 solved with C++](./Day-01/cpp/aoc_day01_p2.cpp)
- [Day Two - Part 1 solved with C++](./Day-02/aoc_day02_p1.cc) and
[Day Two - Part 2 solved with C++](./Day-02/aoc_day02_p2.cc)
- [Day Three - Part 1 solved with C++](./Day-03/aoc_day03_p1.cc) and
[Day Three - Part 2 solved with C++](./Day-03/aoc_day03_p2.cc)
- [Day Five - Part 1 solved with C++](./Day-05/aoc_day05_p1.cc) and
[Day Five - Part 2 solved with C++ **WIP**](./Day-05/aoc_day05_p2.cc)
- [Day Six - Part 1 solved with C++](./Day-06/aoc_day06_p1.cc) and
[Day Six - Part 2 solved with C++](./Day-06/aoc_day06_p2.cc)## License
The code in this repository is provided under the MIT open source license. A
copy of the MIT license file is [here](./LICENSE).