2012-03-08 14:52:32 +01:00
|
|
|
title: Find the first ten digits of the sum of one-hundred 50-digit numbers.
|
|
|
|
url: http://projecteuler.net/problem=13
|
|
|
|
|
|
|
|
desc: |
|
|
|
|
Work out the first ten digits of the sum of the following one-hundred 50-digit numbers.
|
|
|
|
(See file input)
|
|
|
|
|
|
|
|
solution: |
|
|
|
|
Use a full precission math lib
|
|
|
|
|
|
|
|
solutions:
|
|
|
|
solve.php:
|
|
|
|
desc: Expects input on STDIN
|
|
|
|
language: php
|
2012-04-11 14:49:45 +02:00
|
|
|
parameters: < ProjectEuler\013\input
|
2012-03-08 14:52:32 +01:00
|
|
|
solve.rb:
|
|
|
|
desc: Expects input on STDIN
|
|
|
|
language: ruby
|
2012-04-11 14:49:45 +02:00
|
|
|
parameters: < ProjectEuler\013\input
|