remove comment
This commit is contained in:
parent
69d9500f4e
commit
4e59fa8048
@ -9,7 +9,6 @@ app = Flask(__name__)
|
|||||||
def isprime():
|
def isprime():
|
||||||
num = os.environ.get('TARGET', '107107')
|
num = os.environ.get('TARGET', '107107')
|
||||||
if num > 1:
|
if num > 1:
|
||||||
# check for factors
|
|
||||||
for i in range(2, num):
|
for i in range(2, num):
|
||||||
if (num % i) == 0:
|
if (num % i) == 0:
|
||||||
return "not prime"
|
return "not prime"
|
||||||
|
Loading…
Reference in New Issue
Block a user