I'm writing a very simple tic-tac-toe program that will learn from bad lines of play. As such, I want a hash to be named for each line it finds to be poor, so I figured I'd name the hash the actual bad sequence.
For example, if 1-2-5-9-8 is the bad line, then I want to name the hash %12598. Can I do this??