Edited Problem 18

Added Problem 20
This commit is contained in:
Lauchmelder23 2018-10-14 16:15:03 +02:00
parent 20e3e8c172
commit 69f8e0bf74
2 changed files with 25 additions and 5 deletions

View file

@ -48,11 +48,6 @@ triangle = "75 \n\
63 66 04 68 89 53 67 30 73 16 69 87 40 31 \n\ 63 66 04 68 89 53 67 30 73 16 69 87 40 31 \n\
04 62 98 27 23 09 70 98 73 93 38 53 60 04 23 \n" 04 62 98 27 23 09 70 98 73 93 38 53 60 04 23 \n"
other = "3 \n\
7 4 \n\
2 4 6 \n\
8 5 9 3 \n"
tri = [] tri = []
temp = [] temp = []
tempstr = '' tempstr = ''

25
Problem_20.py Normal file
View file

@ -0,0 +1,25 @@
######################################################################
# n! means n × (n 1) × ... × 3 × 2 × 1
#
# For example, 10! = 10 × 9 × ... × 3 × 2 × 1 = 3628800,
# and the sum of the digits in the number 10! is 3 + 6 + 2 + 8 + 8 + 0 + 0 = 27.
#
# Find the sum of the digits in the number 100!
######################################################################
def factorial(x):
if x is 1:
return x
else:
return x * factorial(x - 1)
number = str(factorial(100))
sum = 0
for c in number:
sum += int(c)
print(sum)
# Solution: