problem solving/Project Euler Problem 20 - Find the sum of digits in 100! toysmars 2010. 2. 20. 13:45 링크 n! means n (n 1) ... 3 2 1 Find the sum of the digits in the number 100! easy with python sum([int(x) for x in str(math.factorial(100))]) 공유하기 게시글 관리 toysmars CSE 'problem solving > Project Euler' 카테고리의 다른 글 Problem 22 - What is the total of all the name scores in the file of first names? (0) 2010.02.20 Problem 21 - Evaluate the sum of all amicable pairs under 10000. (0) 2010.02.20 Problem 19 - How many Sundays fell on the first of the month during the twentieth century? (0) 2010.02.20 Problem 18 - Find the maximum sum travelling from the top of the triangle to the base. (0) 2010.02.20 Problem 16 - What is the sum of the digits of the number 2^1000? (0) 2010.02.19 'problem solving/Project Euler' Related Articles Problem 22 - What is the total of all the name scores in the file of first names? Problem 21 - Evaluate the sum of all amicable pairs under 10000. Problem 19 - How many Sundays fell on the first of the month during the twentieth century? Problem 18 - Find the maximum sum travelling from the top of the triangle to the base.