Update sol1.py

This commit is contained in:
Sanders Lin 2018-12-07 02:29:04 +08:00 committed by GitHub
parent c3b8c51822
commit 60ec25ef7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,9 @@ def count_divisors(n):
for i in xrange(1, int(sqrt(n))+1):
if n%i == 0:
nDivisors += 2
#check if n is perfect square
if n**0.5 == int(n**0.5):
nDivisors -= 1
return nDivisors
tNum = 1
@ -43,4 +45,4 @@ while True:
if count_divisors(tNum) > 500:
break
print(tNum)
print(tNum)