mascaaj / advent-code-2020

repo that hold solutions to advent of code 2020

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Advent of code 2020

Requirements to use the code:

  • Create an environment
conda create --name advent python=python3.5
  • install requirements
pip install -f requirements.txt
  • Activate environment, enter the root of the repo, create a new day and begin coding
conda activate advent

cookiecutter cookiecutter

The resulting directory structure


The directory structure of your new day created:

├── README.md          <- The top-level README for developers using this project.
├── data
│   ├── data.txt       <- Data from third party sources.
│   └── test_data.txt  <- Intermediate data that has been transformed.
|
├── notebooks          <- Jupyter notebooks.
│
├── requirements.txt   <- The requirements file for reproducing the analysis environment, e.g.
│                         generated with `pip freeze > requirements.txt`
│
└── src                 <- Source code for use in this project.
    ├── puzzle1.py      <- Python code for the first puzzle.
    └── puzzle2.py      <- Python code for the first puzzle.


About

repo that hold solutions to advent of code 2020


Languages

Language:Jupyter Notebook 96.2%Language:Python 3.8%