Skip to content

Commit ab35dd0

Browse files
authored
Update README.md
1 parent e739b5f commit ab35dd0

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

exercises/17-Russian-Roulette/README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@
22

33
Have you ever played Russian Roulette? It's super fun! If you make it (muahahahaha).
44

5-
The revolver gun has only 6 slots for bullets... insert one bullet in one of the slots,
6-
spin the revolver chamber to make the game random, nobody knows the bullet position.
5+
The revolver gun has only 6 slots for bullets... insert one bullet in one of the slots, spin the revolver chamber to make the game random, nobody knows the bullet position.
76

8-
FIRE!!!....... are you dead?
7+
FIRE!!!...... are you dead?
98

109
## 📝 Instructions:
1110

1211
1. The game is almost working, please fill the function `fire_gun` to make the game work.
1312

1413
2. Compare the bullet position against the chamber position.
1514

16-
3. If the bullet position is equal to the chamber position then the function should return `You are dead!`, else it should return `Keep playing!`
15+
3. If the bullet position is equal to the chamber position, then the function should return `You are dead!`, else it should return `Keep playing!`
1716

18-
## 💡 Hint:
17+
## 💡 Hints:
1918

2019
+ You can get the chamber position by calling the `spin_chamber` function
2120

22-
+ If the bullet is at the same slot as the revolver chamber, then it will be fired (`You are dead!`).
21+
+ If the bullet is at the same slot as the revolver chamber, then it will be fired (`You are dead!`).

0 commit comments

Comments
 (0)