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
commit 7dcbca516f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()