pep8 fixes

This commit is contained in:
lukew3
2020-10-19 13:54:31 -04:00
parent 5aaf1765fa
commit 91358f5b1b
82 changed files with 450 additions and 326 deletions

View File

@@ -1,4 +1,4 @@
from .__init__ import *
from .__init__ import *
def commonFactorsFunc(maxVal=100):
@@ -18,7 +18,7 @@ def commonFactorsFunc(maxVal=100):
if (y % i == 0):
count = count + 1
arr.append(i)
problem = f"Common Factors of {a} and {b} = "
solution = arr
return problem, solution