codingtests/solutions/ProjectEuler/034/desc.yml

14 lines
471 B
YAML
Raw Permalink Normal View History

2011-04-10 11:19:21 +00:00
title: Find the sum of all numbers which are equal to the sum of the factorial of their digits.
url: http://projecteuler.net/problem=34
desc: |
145 is a curious number, as 1! + 4! + 5! = 1 + 24 + 120 = 145.
Find the sum of all numbers which are equal to the sum of the factorial of their digits.
Note: as 1! = 1 and 2! = 2 are not sums they are not included.
solution: Bruteforce
2012-04-25 13:26:13 +00:00
solutions:
2011-04-10 11:19:21 +00:00
solve.php:
desc: Basic solution
language: php