Why is the output not being printed https://ide.codingblocks.com/s/55156
I have even tried passing the vector as an argument https://ide.codingblocks.com/s/55160 1
The question is ----
MAPPED STRINGS
We are given a hashmap which maps all the letters with number. Given 1 is mapped with A, 2 is mapped with Bβ¦β¦26 is mapped with Z. Given a number, you have to print all the possible strings.
Input Format:
A single line contains a number.
Constraints:
Number is less than 10^6
Output Format
Print all the possible strings in sorted order in different lines.
Sample Input
123
Sample Output
ABC
AW
LC