PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
🔡Letters & Boxes
The idea of this is like musical chairs 😂
You start off with say 5 letters and 5 boxes.
Each shuffle a box is removed forcing one letter to be knocked out of the game this repeats
untill there's only one letter and 1 box left
Catch: Numbers are to be randomly shuffled around each time as follows
[a][b][c][d] < all letters have a box
Shuffle 1, --box
[c][d][b] < "a" missed out and removed
Shuffle 2, --box
[b][c] < "d" missed out
Shuffle 3, --box
[c] < "b" missed out
[c] < Won
"""
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run