コード例 #1
0
 def test_collatz_lenght_1(self):
     start = 2
     self.assertEqual(collatz_length(start, self.memo), 1)
コード例 #2
0
 def test_collatz_lenght_3(self):
     start = 10
     self.assertEqual(collatz_length(start, self.memo), 6)