yapf edits

This commit is contained in:
lukew3
2020-10-19 14:08:13 -04:00
parent 233f8bf180
commit 90a794cc05
41 changed files with 347 additions and 240 deletions

View File

@@ -5,7 +5,7 @@ def hcfFunc(maxVal=20):
a = random.randint(1, maxVal)
b = random.randint(1, maxVal)
x, y = a, b
while(y):
while (y):
x, y = y, x % y
problem = f"HCF of {a} and {b} = "
solution = str(x)