Python/project_euler/problem_13/sol1.py

26 lines
563 B
Python
Raw Normal View History

"""
Problem 13: https://projecteuler.net/problem=13
2018-10-19 12:48:28 +00:00
Problem Statement:
Work out the first ten digits of the sum of the following one-hundred 50-digit
numbers.
"""
import os
2018-10-19 12:48:28 +00:00
def solution():
"""
Returns the first ten digits of the sum of the array elements
from the file num.txt
>>> solution()
'5537376230'
"""
file_path = os.path.join(os.path.dirname(__file__), "num.txt")
with open(file_path, "r") as file_hand:
return str(sum([int(line) for line in file_hand]))[:10]
2018-10-19 12:48:28 +00:00
if __name__ == "__main__":
print(solution())