Skip to content

Commit a9b8a2a

Browse files
committed
change game_calc and gcd
1 parent 297e3dc commit a9b8a2a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

brain_games/game_calc.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import operator
2-
import prompt
32
from random import randint
43

4+
import prompt
5+
56

67
def get_calc(name):
78

brain_games/game_gcd.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
import prompt
21
from random import randint
32

3+
import prompt
4+
45

56
def gcd(a, b):
67
while b != 0:

0 commit comments

Comments
 (0)