Yeti

Joined 24 August 2022
no edit summary
No edit summary
Line 28:
Is there really no simpler way to drop the top of stack that works for strings and numbers and in all versions of Dc?
 
=Python/Primes/FSOE1FSOE=
{{works with|Python|2.x}}
This is a sequentialised variant of the well known sieve method (ab)using a dictionary as sparse array.
Line 34:
Alternatively you can describe it as finding the wheels and moving them on a tape. The only knowledge is to start looking 2 instead of starting with 1, but the original sieve does skip 1 too. 2 is not hard coded to be prime. The algorithm detects it as 1st prime and then puts the 2-wheel on the tape.
 
==Python/Primes/FSOE1==
A tape position can hold multiple wheels.
 
Variant: A tape position can hold multiple wheels.
 
<lang python>L = {}
Line 72 ⟶ 74:
...the program has to be terminated by the user e.g. by typing ctrl-c.
 
==Python/Primes/FSOE3==
{{works with|Python|2.x}}
 
<lang python>
Variant: A tape position can hold one wheel.
L = {}
 
<lang python>L = {}
n = 2
 
Line 82 ⟶ 86:
if n in L:
P = L[n]
del L[n] # optional - saves some memory.
else:
P = n
169

edits