Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anze3db/adventofcode2017
Solutions for http://adventofcode.com/2017
https://github.com/anze3db/adventofcode2017
puzzle python python3
Last synced: 7 days ago
JSON representation
Solutions for http://adventofcode.com/2017
- Host: GitHub
- URL: https://github.com/anze3db/adventofcode2017
- Owner: anze3db
- Created: 2017-12-01T11:47:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-29T02:19:33.000Z (almost 7 years ago)
- Last Synced: 2024-11-01T04:42:43.686Z (about 2 months ago)
- Topics: puzzle, python, python3
- Language: Python
- Homepage:
- Size: 127 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of code 2017
Solutions with python 3.6
## Set up local environment
Requirements: [virtuelnv](https://virtualenv.pypa.io/en/stable/), python3
```
$ virtualenv -p python3 venv
$ . venv/bin/activate
```## Run puzzle
```
$ python src/dayX.py
```## Run tests
```
$ ptw -- src/*
```