예제 #1
0
 def test_100_random_with_caching(self):
     # Randomly test for prime values <= than 100th prime, NOT resetting the
     # cache each time.
     for _ in range(100):
         r = random.randint(0, max(p100) + 1)
         expected_primes = [p for p in p100 if p <= r]
         actual_primes = factors.sieve_of_eratosthenes(r)
         self.assertListEqual(expected_primes, actual_primes,
                              "Unexpected return for query value: %d" % r)
예제 #2
0
 def test_100_random_with_caching(self):
     # Randomly test for prime values <= than 100th prime, NOT resetting the
     # cache each time.
     for _ in range(100):
         r = random.randint(0, max(p100) + 1)
         expected_primes = [p for p in p100 if p <= r]
         actual_primes = factors.sieve_of_eratosthenes(r)
         self.assertListEqual(expected_primes, actual_primes,
                              "Unexpected return for query value: %d" % r)
예제 #3
0
 def test_15(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(15),
         [2, 3, 5, 7, 11, 13]
     )
예제 #4
0
 def test_5(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(5),
         [2, 3, 5]
     )
예제 #5
0
 def test_7(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(7),
         [2, 3, 5, 7]
     )
예제 #6
0
 def test_2(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(2),
         [2]
     )
예제 #7
0
 def test_4(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(4),
         [2, 3]
     )
예제 #8
0
 def test_5(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(5), [2, 3, 5])
예제 #9
0
 def test_1(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(1),
         []
     )
예제 #10
0
 def test_100_with_caching(self):
     # First ask for a value with 99 prime returns, then a value with 100 to
     # see that we did get that new extra value.
     self.assertListEqual(factors.sieve_of_eratosthenes(540), p100[:-1])
     self.assertListEqual(factors.sieve_of_eratosthenes(541), p100)
예제 #11
0
 def test_100_primes(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(541), p100)
예제 #12
0
 def test_60(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(60),
         [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59])
예제 #13
0
 def test_100_primes(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(541), p100)
예제 #14
0
 def test_25(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(25),
                          [2, 3, 5, 7, 11, 13, 17, 19, 23])
예제 #15
0
 def test_15(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(15),
                          [2, 3, 5, 7, 11, 13])
예제 #16
0
 def test_7(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(7), [2, 3, 5, 7])
예제 #17
0
 def test_25(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(25),
         [2, 3, 5, 7, 11, 13, 17, 19, 23]
     )
예제 #18
0
 def test_2(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(2), [2])
예제 #19
0
 def test_60(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(60),
         [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59]
     )
예제 #20
0
 def test_4(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(4), [2, 3])
예제 #21
0
 def test_100_with_caching(self):
     # First ask for a value with 99 prime returns, then a value with 100 to
     # see that we did get that new extra value.
     self.assertListEqual(factors.sieve_of_eratosthenes(540), p100[:-1])
     self.assertListEqual(factors.sieve_of_eratosthenes(541), p100)
예제 #22
0
 def test_1(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(1), [])