mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 00:58:32 +02:00
Remove dead man walking set generator.
This commit is contained in:
parent
7c9530aa9d
commit
b31d830c76
2 changed files with 2 additions and 13 deletions
|
@ -90,9 +90,6 @@ Sets are used in order to select the pixels where the message will be hidden.
|
|||
|
||||
# List all available generators
|
||||
$ lsb-set list-generators
|
||||
Dead_Man_Walking
|
||||
Dead Man Walking.
|
||||
|
||||
OEIS_A000217
|
||||
http://oeis.org/A000217
|
||||
Triangular numbers: a(n) = C(n+1,2) = n(n+1)/2 = 0+1+2+...+n.
|
||||
|
@ -107,8 +104,8 @@ Sets are used in order to select the pixels where the message will be hidden.
|
|||
eratosthenes
|
||||
Generate the prime numbers with the sieve of Eratosthenes.
|
||||
|
||||
eratosthenes_composite
|
||||
Generate the composite numbers with the sieve of Eratosthenes.
|
||||
composite
|
||||
Generate the composite numbers using the sieve of Eratosthenes.
|
||||
|
||||
fermat
|
||||
Generate the n-th Fermat Number.
|
||||
|
|
|
@ -37,14 +37,6 @@ def identity() -> Iterator[int]:
|
|||
yield n
|
||||
n += 1
|
||||
|
||||
def Dead_Man_Walking() -> Iterator[int]:
|
||||
"""Dead Man Walking.
|
||||
"""
|
||||
n = 0
|
||||
while True:
|
||||
yield n + 7
|
||||
n += 2
|
||||
|
||||
def triangular_numbers() -> Iterator[int]:
|
||||
"""http://oeis.org/A000217
|
||||
Triangular numbers: a(n) = C(n+1,2) = n(n+1)/2 = 0+1+2+...+n.
|
||||
|
|
Loading…
Add table
Reference in a new issue