Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
12
Task/Truncatable-primes/PicoLisp/truncatable-primes.l
Normal file
12
Task/Truncatable-primes/PicoLisp/truncatable-primes.l
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
(load "@lib/rsa.l") # Use the 'prime?' function from RSA package
|
||||
|
||||
(de truncatablePrime? (N Fun)
|
||||
(for (L (chop N) L (Fun L))
|
||||
(T (= "0" (car L)))
|
||||
(NIL (prime? (format L)))
|
||||
T ) )
|
||||
|
||||
(let (Left 1000000 Right 1000000)
|
||||
(until (truncatablePrime? (dec 'Left) cdr))
|
||||
(until (truncatablePrime? (dec 'Right) '((L) (cdr (rot L)))))
|
||||
(cons Left Right) )
|
||||
Loading…
Add table
Add a link
Reference in a new issue