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 [Challenge]
by D_Stark
The idea of this is like musical chairs 😂
You start off with say 5 letters and 5 boxes.
Each loop a box is removed forcing one letter to be nocked out of the game this repeats untill theres only one letter and 1 box left.
Catch: Numbers are to be randomly shuffled around each loop as follows.
[a][b][c][d] < all letters have a box
Shuffle, loop 1
[c][d][b] < "a" missed out and removed
Shuffle, loop 2
[b][c] < "d" missed out
Shuffle, loop 3
[c] < "b" missed out
[c] < Won
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run