fix https links
This commit is contained in:
@@ -5,6 +5,6 @@ This is only an approximation, but a rather good one. In tested the numbers from
|
||||
|
||||
So now we've got the numbers where `digit_product(p) == digit_product(p+3330) == digit_product(p+6660)` (in fact there are only 40 of these).
|
||||
We then use a simple primality test to check if all three numbers are prime.
|
||||
The primality test is basically a port of the [wikipedia](http://en.wikipedia.org/wiki/Primality_test) version to befunge. Wit it we only have to do `n/6` divisions to test a number `n` for primality.
|
||||
The primality test is basically a port of the [wikipedia](https://en.wikipedia.org/wiki/Primality_test) version to befunge. Wit it we only have to do `n/6` divisions to test a number `n` for primality.
|
||||
|
||||
All in all tis leads to a fast, small and not very grid-intensive program (Only one field is used, *and only as a temporary storage to swap three values*).
|
||||
Reference in New Issue
Block a user