Files
project_euler/e_41.py
2012-05-02 09:05:08 +02:00

15 lines
444 B
Python

#!/usr/bin/env python
'''
Created on 10 feb. 2012
@author: Julien Lengrand-Lambert
DESCRIPTION: Solves problem 41 of Project Euler
We shall say that an n-digit number is pandigital if it makes use of all the digits 1 to n exactly once. For example, 2143 is a 4-digit pandigital and is also prime.
What is the largest n-digit pandigital prime that exists?
'''
if __name__ == '__main__':
print 1
#print "Answer : %d " % (last_ten())