Restructuring

This commit is contained in:
2024-07-01 13:49:44 +00:00
parent f11b705ef0
commit 8d60e1b905
194 changed files with 1296 additions and 112 deletions

View File

@ -0,0 +1,15 @@
title: Find the largest prime factor of a composite number.
url: http://projecteuler.net/problem=3
desc: |
The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143 ?
solution: |
Use factorization to find the largest prime factor
solutions:
solve.php:
desc: Basic solution
language: php