Skip to content

Commit

Permalink
allprimes fonksiyonu kullanıldı
Browse files Browse the repository at this point in the history
  • Loading branch information
nyucel authored Feb 13, 2021
1 parent 68b5b7f commit ed8eecf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 266-PseudoSquareRoot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
# -*- coding: utf-8 -*-
# https://projecteuler.net/problem=266

from sympy import primerange
from functions import allprimes
from math import sqrt
from bisect import bisect_left

primes = list(primerange(2,190))
primes = allprimes(190)

p = 1
for n in primes:
Expand Down

0 comments on commit ed8eecf

Please sign in to comment.