Doing some busy beaver stuff in rust 4fun
want to run it?
in terminal:
-> cargo run --release <number of states> <number of symbols>
To get the one below, run
-> cargo run --release 2 2
States | Symbols |
---|---|
2 | 2 |
score: 4
-> cargo run --release 3 2
States | Symbols |
---|---|
3 | 2 |
score: 6
-> cargo run --release 2 3
States | Symbols |
---|---|
2 | 3 |
score: 9