Project Euler 20 - Factorial digit sum

Official link: https://projecteuler.net/problem=20

Thought Process

Using my sum of digits function and the math.factorial function this problem is trivial. Try to code your own factorial function first!

Interactive Code

Input an integer (yourinput)

Code will output the digit sum of yourinput! (! denotes factorial)