1309. Decrypt String from Alphabet to Integer Mapping
Description
**Input:** s = "10#11#12"
**Output:** "jkab"
**Explanation:** "j" -> "10#" , "k" -> "11#" , "a" -> "1" , "b" -> "2".**Input:** s = "1326#"
**Output:** "acz"**Input:** s = "25#"
**Output:** "y"ac
Last updated