I would like to know if there is a simple way to turn [5,2,10] into \"52a\". Where its not just to this case, I want to associate any number >9 w
[5,2,10]
\"52a\"
Slower but more elegant:
f = map ((['0'..'9'] ++ ['a'..'z']) !!)
If your numbers are 0-15 use map intToDigit from Data.Char.
map intToDigit