Skip to main content

Problem 40 Project Euler Solution with python

Champernowne's constant

An irrational decimal fraction is created by concatenating the positive integers:
0.123456789101112131415161718192021...
It can be seen that the 12th digit of the fractional part is 1.
If dn represents the nth digit of the fractional part, find the value of the following expression.
d1 × d10 × d100 × d1000 × d10000 × d100000 × d1000000
This problem requires a small homework to set the upper limit for the for loop. This is general mathematics.

We have 9, 1 digit numbers
90, 2 digit numbers
900, 3 digit numbers
9000, 4 digit numbers
90000, 5 digit numbers
900000, 6 digit numbers

Which will total to 5888889 digits. But we only need 1000000, so that
9 x 1 digit
90 x 2 digit
900 x 3 digit
9000 x 4 digit
90000 x 5 digit
n x 6 digit

= 9*1 + 90*2 + 900*3+ 9000*4 + 90000*5 + n*6 = 1000000
So the value of n is approximately 85186 that means that we will have to do iterations until 185186.

The same thing has been used in the program directly.

Program

Remember that the strings are indexed from 0 on wards.

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

This solution also satisfies PEP8 standard.

Output


Summary

I don't really have any big comments on this problem. But this problem demanded some homework and usage of basic mathematics to make it optimized and work faster. Performance wise I am satisfied and I have not tried optimizing the code. The code I have presented to you is the first draft. You can write a better code and share it with me, if possible.

As always if you have any doubt or didn't understand anything then you can comment in the comment box below, I will be glad to help you.

Please do comment if you have found any typo or have any better program or have a different program or 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...