-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGFG_ConvertNumericKeypadSequence.cpp
99 lines (93 loc) · 1.69 KB
/
GFG_ConvertNumericKeypadSequence.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
https://practice.geeksforgeeks.org/problems/convert-a-sentence-into-its-equivalent-mobile-numeric-keypad-sequence0547/1#
Convert a sentence into its equivalent mobile numeric keypad sequence
*/
// { Driver Code Starts
// C++ implementation to convert a
// sentence into its equivalent
// mobile numeric keypad sequence
#include <bits/stdc++.h>
using namespace std;
string printSequence(string input);
// Driver function
int main()
{
int t;
cin>>t;
cin.ignore();
while(t--)
{
string s;
getline(cin,s);
cout<<printSequence(s)<<endl;
}
return 0;
}
// } Driver Code Ends
/*
string printSequence(string S)
{
array<string,26> codes={
"2",
"22",
"222",
"3",
"33",
"333",
"4",
"44",
"444",
"5",
"55",
"555",
"6",
"66",
"666",
"7",
"77",
"777",
"7777",
"8",
"88",
"888",
"9",
"99",
"999",
"9999"
};
string ans;
for(char ch: S)
{
if(ch!=' ')
ans += codes[ch-'A'];
else ans+="0";
}
return ans;
}
*/
string printSequence(string S)
{
unordered_map<char, string> codes;
codes[' ']="0";
char ch='A';
for(int i=2; i<=9; i++)
{
string s = to_string(i);
int k = 3;
while(k--)
{
codes[ch++] = s;
s += to_string(i);
}
if(ch=='S') codes[ch++] = "7777";
if(ch=='Z') codes[ch] = "9999";
}
string ans;
for(char ch: S)
{
if(ch!=' ')
ans += codes[ch];
else ans+="0";
}
return ans;
}