https://github.com/diego-vicente/advent-of-code-2017
My solutions for Advent of Code 2017
https://github.com/diego-vicente/advent-of-code-2017
advent-of-code advent-of-code-2017
Last synced: 9 months ago
JSON representation
My solutions for Advent of Code 2017
- Host: GitHub
- URL: https://github.com/diego-vicente/advent-of-code-2017
- Owner: diego-vicente
- License: gpl-3.0
- Created: 2017-12-01T14:19:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-27T16:13:03.000Z (almost 8 years ago)
- Last Synced: 2025-01-20T08:38:43.050Z (11 months ago)
- Topics: advent-of-code, advent-of-code-2017
- Language: Python
- Homepage:
- Size: 144 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
#+TITLE: Advent of Code 2017
#+AUTHOR: Diego Vicente Martín
#+EMAIL: mail@diego.codes
This repository contains all the code for my solution (written in Python 3) for
solving all the puzzles of the [[http://adventofcode.com/2017][Advent of Code 2017]] challenges. Although not in
a competitive way (living in UTC+01 is quite a handicap, since the challenges
are released at 6AM), I was able to complete all the challenges by December
25th.
Some of the challenges may require a bit of refactoring and optimization, and I
expect to write a bit more on it soon (whether on this repository or on a blog
post); but the code can be interesting for some people and I decided to release
it as soon as possible. Feel free to open an issue or contact in case of doubt.
Each of the challenges are written in their file, named =dayXX.py=. To run each
of them, be aware that most of them require an input (mine are gathered under
the =data= folder), and to properly work must be run from the root of the
repository:
#+BEGIN_SRC sh
cd advent-of-code-2017
python3 src/day09.py
#+END_SRC