summaryrefslogtreecommitdiff
path: root/17/test.py
diff options
context:
space:
mode:
Diffstat (limited to '17/test.py')
-rwxr-xr-x17/test.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/17/test.py b/17/test.py
new file mode 100755
index 0000000..74943db
--- /dev/null
+++ b/17/test.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import unittest
+
+import main
+
+
+
+class Examples(unittest.TestCase):
+ def test_example1(self):
+ sizes = [20, 15, 10, 5, 5]
+ combos = main.find_combos(sizes, set(), set(range(len(sizes))), 25)
+ self.assertEqual(main.solve_partn(1, combos), 4)
+ self.assertEqual(main.solve_partn(2, combos), 3)
+
+
+
+if __name__ == "__main__":
+ unittest.main()