Skip to content

Commit 2bfdce9

Browse files
gcd.js refactoring
1 parent 22d6d04 commit 2bfdce9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/games/gcd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const questionGame = 'Find the greatest common divisor of given numbers.';
77
const questionRound = () => {
88
let number1 = randomNumber(1, 10);
99
let number2 = randomNumber(1, 10);
10-
const question = `Question:${number1} ${number2}`;
10+
const question = `Question: ${number1} ${number2}`;
1111

1212
let result = 0;
1313
while (number2 !== 0) {

0 commit comments

Comments
 (0)