Decrypt String from Alphabet to Integer Mapping
Given a string s formed by digits ('0' - '9') and '#' symbols, return the corresponding decoded message.
The mapping is as follows:
'1' maps to 'a' '2' maps to 'b' '3' maps to 'c' ... '26' maps to 'z' The '#' symbol represents a single digit, which is mapped to the corresponding letter.
Ada AI
I want to discuss a solution
Help me solve this
Give more examples
What's wrong with my code?
How to use 'for loop' in javascript?
javascript (node 13.12.0)