Restructuring
This commit is contained in:
13
solutions/ProjectEuler/034/desc.yml
Normal file
13
solutions/ProjectEuler/034/desc.yml
Normal file
@ -0,0 +1,13 @@
|
||||
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
|
||||
solutions:
|
||||
solve.php:
|
||||
desc: Basic solution
|
||||
language: php
|
||||
|
Reference in New Issue
Block a user