-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1002. Find Common Characters.cpp
More file actions
51 lines (41 loc) · 1.22 KB
/
1002. Find Common Characters.cpp
File metadata and controls
51 lines (41 loc) · 1.22 KB
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
#include <vector>
class Solution {
public:
vector<string> commonChars(vector<string>& A) {
vector<string> base, newBase;
int aux;
string sAux;
// every word
for(int i = 0; i < A.size(); i++){
// every char from word
for(int j = 0; j < A[i].size(); j++){
// if first round, save it as base
if(i == 0){
sAux = A[i][j];
base.push_back(sAux);
}
else{
sAux = A[i][j];
aux = findIndex(base, sAux);
if(aux != -1){
newBase.push_back(sAux);
base[aux] = '-';
}
}
}
if(i > 0){
base = newBase;
newBase = {};
}
}
return base;
}
int findIndex(vector<string> v, string x){
for(int i = 0; i < v.size(); i++){
if(v[i] == x){
return i;
}
}
return -1;
}
};