Exemplo n.º 1
0
 def test_fib_with_dict_4(self):
     a_dict = {1: 1, 2: 1}
     self.assertEqual(610, fib_with_dict(15, a_dict))
Exemplo n.º 2
0
 def test_fib_with_dict_1(self):
     a_dict = {1: 1, 2: 1}
     self.assertEqual(1, fib_with_dict(1, a_dict))
Exemplo n.º 3
0
 def test_fib_with_dict_3(self):
     a_dict = {1: 1, 2: 1}
     self.assertEqual(2, fib_with_dict(3, a_dict))