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]
The idea of this is like musical chairs 😂
You start off with 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
The catch to this is that the numbers randomly shuffle around each loop as follows.
a b c d e
loop 1
[d][c][a][b] < all have a box in a random place
loop 2
[c][d][b] < "a" missed out -removed
loop 3
[b][c] < "d" missed out
loop 4
[c] < "b" missed out
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run