Skip to main content

Problem 41 project Euler Solution with python

Pandigital prime

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?


An another question on Pandigital. I have written two solutions, one solution demanded homework and the other required programming logic. Both had their own pros and cons. But I will finalize the solution which demanded the programming skills.

Anyways you can see both the programs below.

Better performing code considers the divisibility of 3. See the Answer written by engineer on Stack Overflow, you will understand the algorithm.
(Second Program I wrote)
# http://radiusofcircle.blogspot.com

# importing the permutations method
from itertools import permutations

# importing time module
import time

# time at the start of program execution
start = time.time()


def is_prime(n):
    """Function to check if
    the given number is prime"""
    for i in xrange(2, int(n**0.5)+1):
        if n % i == 0:
            return False
    return True

# permutations of numbers from 1-7
p = permutations('1234567')

# for loop to loop from reverse order
# from higher to lower
for i in list(p)[::-1]:
    if int(i[6]) % 2 != 0:
        number = int(''.join(i))
        if (number+1) % 6 == 0 or (number-1) % 6 == 0:
            if is_prime(number):
                print number
                break

# time at the end of program execution
end = time.time()

# total time of execution
print end-start
This program gets executed in 0.00150895118713 seconds. But this demanded mathematics rather than more programming logic.

I have explained most of the code in the program section.

Program

Check out itertools.permutations to understand what permutations are.

is_prime
This is a very simple function to check if the given number is prime or not.

Now the value of a = '123456789', which when permuted will give all the 1-9 pandigital numbers. If you don't want 1-9 pandigital and suppose say, you want only 1-7 pandigital number, then consider only a[:7].

flag = True

j = 0, this one is while loop iterator

While loop is executed because the value of flag is True at the instant.

p = permutations(a[:9]) = permutations('123456789')

As we know that the permutations will return all the numbers arranged from small to big. As we wanted bigger prime number we will check from last to first. I have used [::-1] to reverse the given list.

Take an element from the permutations and then check if the last element is not even.

Next condition uses the fact that all the prime numbers are of the form 6k+1 and 6k-1 but the vice versa is not true.

If the number passes the above test then check if it is prime. If it is prime then this will be the largest pandigital prime number because we are coming in reverse order.

If any prime is not found in the present iteration then start checking permutations of '12345678', i.e.j = 8 = 9-1. At the end when the prime is found, print the prime number and then flag = False to stop the outer while loop and break to stop the present for loop.

Output

Summary

This problem took some time for me to complete, but I am really satisfied. I am very happy with the first program I have written because I have used a lot of logic rather than mathematics. Even though the program also had some mathematics it contained more programming logic. Second solution, a child of the first program used a very simple mathematical logic and had a better execution time. I am not happy for not getting this idea until I have seen an answer on Stack.

As always if you have any doubt then you can comment in the comment box below.

Please do comment if you have found any typo or have a different program or have a better program or if you have a suggestion. I will be very happy to view each of them.

You can also contact me.

Thank you. Have a nice day😃.

Popular posts from this blog

Project Euler Problem 62 solution with python

Cubic permutations ¶ The cube, 41063625 (3453), can be permuted to produce two other cubes: 56623104 (3843) and 66430125 (4053). In fact, 41063625 is the smallest cube which has exactly three permutations of its digits which are also cube. Find the smallest cube for which exactly five permutations of its digits are cube.

Project Euler Problem 67 Solution with Python

Maximum path sum II By starting at the top of the triangle below and moving to adjacent numbers on the row below, the maximum total from top to bottom is 23. 3 7 4 2 4 6 8 5 9 3 That is, 3 + 7 + 4 + 9 = 23. Find the maximum total from top to bottom in triangle.txt (right click and 'Save Link/Target As...'), a 15K text file containing a triangle with one-hundred rows.

Add/Embed SVG to Blogger website

In this post I will tell you my method(trick) of adding SVG images in a blogger website or blog. Before starting , the first thin g I am assu m ing is that you are aware of SVG if you are here. If not please see S calable V ec tor G raphics Recently when I tried to embed a SVG image for a post on pygal, I tried uploading the SVG file and blogger Image uploader came up with an error, because of which I had to find some other way.  SVG File upload Error in Blogger  I started sea rc hing Google " Embed SVG in Blogger " . I found blogorrhea , w h ich gave some i nformatio n on add ing SVG directly as a markup , which worked , but I faced another problem using this . Also th is guy has used lot of Javascript which was confusin g for me, being new to using SVG.   So I first t houg ht of learning on h ow to embed SVG in HTML and t his on e worked out. Actually we can embed SVG in HTML i n following ways: Using Object tag Using Iframe tag Using embed...