forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.js
40 lines (38 loc) · 956 Bytes
/
Solution.js
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
const numUniqueEmails2 = function(emails){
const emailFilter = function(str){
let index = str.search(/@/);
let s = str.substring(0,index);
let s2 = str.substring(index+1,str.length);
let res = '';
for(let i = 0; i < s.length; i++){
if(s[i] === '+') break;
if(s[i] === '.') continue;
res = res+s[i];
}
return res+s2;
}
let arr = [];
for(let i = 0; i < emails.length; i++){
let t = emailFilter(emails[i]);
if(arr.indexOf(t) === -1){
arr.push(t);
}
}
return arr.length;
};
const numUniqueEmails = function(emails){
let arr = emails.map(str=>{
let index = str.search(/@/);
let s = str.substring(0,index);
let s2 = str.substring(index+1,str.length);
let res = '';
for(let i = 0; i < s.length; i++){
if(s[i] === '+') break;
if(s[i] === '.') continue;
res = res+s[i];
}
return res+s2;
});
let set = new Set(arr);
return set.size;
}