mirror of
https://github.com/jlengrand/project_euler.git
synced 2026-03-10 08:41:20 +00:00
20 lines
402 B
Python
Executable File
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())
|