Skip to content

Commit

Permalink
style: Remoção dos espaços adicionais
Browse files Browse the repository at this point in the history
  • Loading branch information
Allber Fellype committed Oct 19, 2024
1 parent 219398c commit 3db5edb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions desafio-02/JamesStewart-314/python/desafio02.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
def sieveofEratosthenesPrimeGenerator() -> Generator[int, None, None]:

"""
Generates an infinite sequence of prime numbers
Generates an infinite sequence of prime numbers
using the Sieve of Eratosthenes algorithm.
This generator function uses a dictionary to keep track of
This generator function uses a dictionary to keep track of
non-prime numbers and their smallest prime factors.
It starts from the number 2 and iteratively finds the next
prime number by checking if the current number is
Expand Down

0 comments on commit 3db5edb

Please sign in to comment.