diff --git a/www/statics/euler/Euler_Problem-012_explanation.md b/www/statics/euler/Euler_Problem-012_explanation.md index c455f6a..8cc99a5 100644 --- a/www/statics/euler/Euler_Problem-012_explanation.md +++ b/www/statics/euler/Euler_Problem-012_explanation.md @@ -1 +1 @@ -Here I was desperately in need of an efficient algorithm. So I copied [this](http://www.mathblog.dk/triangle-number-with-more-than-500-divisors/) one from mathblog.dk and translated it into befunge. And I have to say it's amazingly fast. \ No newline at end of file +Here I was desperately in need of an efficient algorithm. So I copied [this](https://web.archive.org/web/20150314051848/http://www.mathblog.dk/triangle-number-with-more-than-500-divisors/) one from mathblog.dk and translated it into befunge. And I have to say it's amazingly fast. \ No newline at end of file diff --git a/www/statics/euler/Euler_Problem-051_explanation.md b/www/statics/euler/Euler_Problem-051_explanation.md index e69afb3..8e39c9c 100644 --- a/www/statics/euler/Euler_Problem-051_explanation.md +++ b/www/statics/euler/Euler_Problem-051_explanation.md @@ -1,4 +1,4 @@ -This is effectively an optimized implementation of [this algorithm](http://www.mathblog.dk/project-euler-51-eight-prime-family/). +This is effectively an optimized implementation of [this algorithm](https://web.archive.org/web/20150307042855/http://www.mathblog.dk/project-euler-51-eight-prime-family/). You can see the ten patterns on the left side and beside them the area were we build our numbers. So what we do is iterate through the numbers from `100` to `1 000`, through the ten patterns and through the digits `0`, `1` and `2`. diff --git a/www/statics/euler/Euler_Problem-058_explanation.md b/www/statics/euler/Euler_Problem-058_explanation.md index 16dc7ee..00eb551 100644 --- a/www/statics/euler/Euler_Problem-058_explanation.md +++ b/www/statics/euler/Euler_Problem-058_explanation.md @@ -1,4 +1,4 @@ It's obvious that the bottleneck of this program is the primality test. The numbers become here too big to create a sieve and "normal" prime testing takes too long. -So we use the [Miller-Rabin primality test](https://en.wikipedia.org/wiki/Miller-Rabin_primality_test) that I implemented a while ago (thank [mathblog.dk](http://www.mathblog.dk)). +So we use the [Miller-Rabin primality test](https://en.wikipedia.org/wiki/Miller-Rabin_primality_test) that I implemented a while ago (thanks [mathblog.dk](https://web.archive.org/web/20150314052138/http://www.mathblog.dk/project-euler-58-primes-diagonals-spiral/)). The rest is just enumerating all the diagonals until `primes*10