Esempio n. 1
0
#!/usr/bin/env python

import sys

import problem004

print(problem004.find_palindrome_product(int(sys.argv[1])))
Esempio n. 2
0
 def test_find_palindrome_product(self):
     self.assertEquals(9009, problem004.find_palindrome_product(10))