You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AdventOfCode19/days/day3.py

11 lines
276 B

import unittest
import os
class Day3(unittest.TestCase):
inputfile = os.path.join(os.path.dirname(__file__), "input/day3_input")
def test_day3a(self):
with open(self.inputfile) as fp:
steps = fp.readline().split(',')
pass