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.
|
import unittest
|
|
import os
|
|
|
|
class Day3(unittest.TestCase):
|
|
inputfile = os.path.join(os.path.dirname(__file__), "day3_input")
|
|
|
|
def test_day3a(self):
|
|
with open(self.inputfile) as fp:
|
|
steps = fp.readline().split(',')
|
|
|
|
pass
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main() |