Skip to content

Commit 1e9dbcf

Browse files
authored
Update solution.hide.py
1 parent 66e30d1 commit 1e9dbcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/17-Russian-Roulette/solution.hide.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ def spin_chamber():
88

99
# ❌ ⬆ DON'T CHANGE THE CODE ABOVE ⬆ ❌
1010
def fire_gun():
11-
# ✅ ↓ your code here ↓ ✅
11+
# ✅ ↓ your loop here ↓ ✅
1212
if spin_chamber() == bullet_position:
13-
return "You're dead!"
13+
return "You are dead!"
1414
else:
1515
return "Keep playing!"
1616

0 commit comments

Comments
 (0)