Skip to content

Commit

Permalink
Problem 16 Added
Browse files Browse the repository at this point in the history
Solution to the Problem 16  has been added.
  • Loading branch information
Thejus-Paul committed Nov 19, 2017
1 parent 0f78cd6 commit c787a22
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Project Euler/Problem 16/sol1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
power = int(input("Enter the power of 2: "))
num = 2**power

string_num = str(num)

list_num = list(string_num)

sum_of_num = 0

print("2 ^",power,"=",num)

for i in list_num:
sum_of_num += int(i)

print("Sum of the digits are:",sum_of_num)
3 changes: 3 additions & 0 deletions Project Euler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,6 @@ PROBLEMS:
Using the rule above and starting with 13, we generate the following sequence:
13 → 40 → 20 → 10 → 5 → 16 → 8 → 4 → 2 → 1
Which starting number, under one million, produces the longest chain?

16. 2^15 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.
What is the sum of the digits of the number 2^1000?

0 comments on commit c787a22

Please sign in to comment.