Merge pull request #257 from shivg7706/master

another sol for problem_20
This commit is contained in:
Harshil
2018-03-03 17:12:01 +05:30
committed by GitHub

View File

@ -0,0 +1,5 @@
from math import factorial
def main():
print(sum([int(x) for x in str(factorial(100))]))
if __name__ == '__main__':
main()