コード例 #1
0
 def test_bin_collatz_3 (self):
     c = bin_collatz(999999)
     self.assert_(c == 259)
コード例 #2
0
 def test_bin_collatz_2 (self):
     c = bin_collatz(871)
     self.assert_(c == 179)
コード例 #3
0
 def test_bin_collatz_1 (self):
     c = bin_collatz(9)
     self.assert_(c == 20)
コード例 #4
0
 def test_bin_collatz_3 (self):
     c = bin_collatz(999999)
     self.assert_(c == 259)
コード例 #5
0
 def test_bin_collatz_2 (self):
     c = bin_collatz(871)
     self.assert_(c == 179)
コード例 #6
0
 def test_bin_collatz_1 (self):
     c = bin_collatz(9)
     self.assert_(c == 20)