Add prod three challenge

This commit is contained in:
Donne Martin
2017-03-28 05:13:55 -04:00
parent c3b6ef0376
commit 01b0d949a9
4 changed files with 471 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
from nose.tools import assert_equal, assert_raises
class TestProdThree(object):
def test_prod_three(self):
solution = Solution()
assert_raises(TypeError, solution.max_prod_three, None)
assert_raises(ValueError, solution.max_prod_three, [1, 2])
assert_equal(solution.max_prod_three([5, -2, 3]), -30)
assert_equal(solution.max_prod_three([5, -2, 3, 1, -1, 4]), 60)
print('Success: test_prod_three')
def main():
test = TestProdThree()
test.test_prod_three()
if __name__ == '__main__':
main()