Files
project_euler/e_13.py
2012-01-16 10:13:57 +01:00

20 lines
402 B
Python
Executable File

#!/usr/bin/env python
"""
##---
# jlengrand
#Created on : Mon Jan 16 10:02:28 CET 2012
#
# DESCRIPTION : Solves problem 13 of Project Euler
Work out the first ten digits of the sum of the following one-hundred 50-digit numbers.
(gris is saved into e_13.data)
##---
"""
def ten_dig_sum(filename):
"""
"""
return 1
if __name__ == '__main__':
print "Answer : %d" % (fun())