11 lines
276 B
Python
11 lines
276 B
Python
from prog import *
|
|
import unittest
|
|
|
|
class Tests(unittest.TestCase):
|
|
# def test_part1(self):
|
|
# self.assertEqual(result(get_input(sample = True)), 26)
|
|
|
|
def test_part2(self):
|
|
self.assertEqual(result(get_input(sample = True, part = 1), part = 2), "5353")
|
|
|