Sieve of Eratosthenes algorithm

This commit is contained in:
Michal Zarnecki
2024-08-15 22:51:20 +02:00
committed by Brandon Johnson
parent de42d6ad06
commit b90af128d5

View File

@ -85,6 +85,7 @@
* [Problem7](./Maths/ProjectEuler/Problem7.php)
* [Problem8](./Maths/ProjectEuler/Problem8.php)
* [Problem9](./Maths/ProjectEuler/Problem9.php)
* [Eratosthenessieve](./Maths/EratosthenesSieve.php)
## Searches
* [Binarysearch](./Searches/BinarySearch.php)
@ -155,6 +156,7 @@
* [Eratosthenessievetest](./tests/Maths/EratosthenesSieveTest.php)
* [Mathstest](./tests/Maths/MathsTest.php)
* [Projecteulertest](./tests/Maths/ProjectEulerTest.php)
* [Eratosthenessievetest](./tests/Maths/EratosthenesSieveTest.php)
* Searches
* [Searchestest](./tests/Searches/SearchesTest.php)
* Sorting