commit c1d61a887548c89e663165a99e709d5c33b1eb76 Author: Tobias Berger Date: Sun Nov 22 14:00:56 2020 +0100 Python Jupyter Template Base Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/AdventOfCode.code-workspace b/AdventOfCode.code-workspace new file mode 100644 index 0000000..876a149 --- /dev/null +++ b/AdventOfCode.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": {} +} \ No newline at end of file diff --git a/Python/template/input b/Python/template/input new file mode 100644 index 0000000..e69de29 diff --git a/Python/template/solution.ipynb b/Python/template/solution.ipynb new file mode 100644 index 0000000..a0e5a81 --- /dev/null +++ b/Python/template/solution.ipynb @@ -0,0 +1,48 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.6-final" + }, + "orig_nbformat": 2, + "kernelspec": { + "name": "python3", + "display_name": "Python 3.8.6 64-bit", + "metadata": { + "interpreter": { + "hash": "1ddf53fa84779e14f0db18342168679c9c165a81c5f324dac828befab228d68d" + } + } + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Get puzzle input from input file\n", + "\n", + "puzzle_input = open(\"input\").read()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ] +} \ No newline at end of file