Skip to main content

Problem 36 Project Euler Solution with python

Double-base palindromes

The decimal number, 585 = 10010010012 (binary), is palindromic in both bases.
Find the sum of all numbers, less than one million, which are palindromic in base 10 and base 2.
(Please note that the palindromic number, in either base, may not include leading zeros.)

Before you continue reading the solution I would recommend you having a look at Palindrome Number Wikipedia, if you don't know what a palindrome number is.

This problem is pretty easy if you have already solved problem 4. You can see my solution to understand the program for this problem. Problem 4 Project Euler Solution with python.

After reading this question it just took me a few minutes to get the solution. Algorithm is simple, use python's inbuilt bin function and then get the binary version of the number. In the similar way use extended slicing to get the reverse of the number. If you don't want to use extended slicing but to use some other program for getting the reverse of the number, then you might have to look at Reverse a string in python. There are a lot of answer given by the community members.

Now coming back to question, as I was not paying a careful attention to the question to the last problem, I wasted some time solving the problem for wrong question. So this time I didn't want to do the same mistake. If you have observed, the last statement in the question says, "Please note that the palindromic number, in either base, may not include leading zeros". There are two conclusions we can make of this statement.

First conclusion I made was regarding the base 10 number, according to which if the number is palindrome then there should not be zeros in the end also. So we can eliminate all the multiples of 10.

Before I came up with the second conclusion, I first revised my concepts with converting Decimal number to Binary number on wikihow. All the even numbers when written in base 2 will have zero at the end. I also checked the same with bin in the interpreter. As we know that there should not be any zeros in the start of the number then there should not be any zeros at the end of the number also. But all the even numbers when written in binary format have zeros and they can be eliminated from our calculation.

Finally I only had to do iterations for odd numbers and it was easy with xrange, because I only increased the step size to 2. You can see the same in the program also.

Program

Program is very simple and also it is very compact. If you remove all the comments and the time stuff from the code you will end up with just 6 lines of code.

In the program, I have not checked for Base 2 numbers and Base 10 numbers separately. I  simply checked for Base 10 numbers and if the given number is Palindrome in Base 10 then check if the number is Palindrome in Base 2. This has saved me a lot of resources and has also saved a lot of execution time.

As always you can download the source code from Github Gist pep36.py

Output 


Summary

The first time I wrote the program for this problem, it came out to be very simple and compact. Performance was also very good and I didn't think of optimizing the code. I am satisfied with this code because even after looping for  half a million times the execution time is very less. But there might be some scope for improvement. Even if improved we will have to compromise on the compactness of the code.

If you have any doubt or didn't understand anything then comment in the comment box below and I will be glad to help you.

Please do comment in the comment box below if you have found any typo, or have a different or better program or if you have any suggestion. I will be glad 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...