Skip to content

Commit 183bef1

Browse files
committed
fix autotest error in gcd game
1 parent be759ea commit 183bef1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brain_games/games/gcd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def get_greatest_common_divisor(num1, num2):
1212

1313
def get_random_numbers_and_answer():
1414
num1, num2 = random.randint(1, 101), random.randint(1, 101)
15-
question = f' {num1} {num2}'
15+
question = f'{num1} {num2}'
1616
answer = str(get_greatest_common_divisor(num1, num2))
1717
return question, answer
1818

0 commit comments

Comments
 (0)