-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeyboardRow.cpp
More file actions
70 lines (61 loc) · 936 Bytes
/
KeyboardRow.cpp
File metadata and controls
70 lines (61 loc) · 936 Bytes
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
class Solution {
public:
vector<string> findWords(vector<string>& words) {
string a="qwertyuiopQWERTYUIOP",b="asdfghjklASDFGHJKL",c="zxcvbnmZXCVBNM";
unordered_map<char,int>ump1,ump2,ump3;
for(auto it:a)
{
ump1[it]++;
}
vector<string>ans;
for(auto it:b)
{
ump2[it]++;
}
for(auto it:c)
{
ump3[it]++;
}
for(int i=0;i<words.size();i++)
{
string s=words[i];
int idx=0;
bool flag=true;
if(ump1.find(s[idx])!=ump1.end())
{
for(auto it:s)
{
if(ump1.find(it)==ump1.end())
{
flag=false;
}
}
}
else if(ump2.find(s[idx])!=ump2.end())
{
for(auto it:s)
{
if(ump2.find(it)==ump2.end())
{
flag=false;
}
}
}
else
{
for(auto it:s)
{
if(ump3.find(it)==ump3.end())
{
flag=false;
}
}
}
if(flag==true)
{
ans.push_back(s);
}
}
return ans;
}
};