Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am ernest22 on github.
* I am ernest22 (https://keybase.io/ernest22) on keybase.
* I have a public key ASDirjDDgNTltqn4SJuyXvL63qzvHTVN7a5lGcm2wLx-Ygo
To claim this, I am signing this object:
@ernest22
ernest22 / main.py
Created September 20, 2018 12:37
challenge created by ernest22 - https://repl.it/@ernest22/challenge
def first_100_prime_numbers():
# Return a list containing the first 100 prime numbers
# Replace the line below with your solution
p = []
i = 0
a = 2
while i < 100:
for j in range(2,a):
if (a % j) == 0:
break