comments | difficulty | edit_url | tags | |||
---|---|---|---|---|---|---|
true |
简单 |
|
每个 有效电子邮件地址 都由一个 本地名 和一个 域名 组成,以 '@'
符号分隔。除小写字母之外,电子邮件地址还可以含有一个或多个 '.'
或 '+'
。
- 例如,在
[email protected]
中,alice
是 本地名 ,而leetcode.com
是 域名 。
如果在电子邮件地址的 本地名 部分中的某些字符之间添加句点('.'
),则发往那里的邮件将会转发到本地名中没有点的同一地址。请注意,此规则 不适用于域名 。
- 例如,
"[email protected]”
和“[email protected]”
会转发到同一电子邮件地址。
如果在 本地名 中添加加号('+'
),则会忽略第一个加号后面的所有内容。这允许过滤某些电子邮件。同样,此规则 不适用于域名 。
- 例如
[email protected]
将转发到[email protected]
。
可以同时使用这两个规则。
给你一个字符串数组 emails
,我们会向每个 emails[i]
发送一封电子邮件。返回实际收到邮件的不同地址数目。
示例 1:
输入:emails = ["[email protected]","[email protected]","[email protected]"] 输出:2 解释:实际收到邮件的是 "[email protected]" 和 "[email protected]"。
示例 2:
输入:emails = ["[email protected]","[email protected]","[email protected]"] 输出:3
提示:
1 <= emails.length <= 100
1 <= emails[i].length <= 100
emails[i]
由小写英文字母、'+'
、'.'
和'@'
组成- 每个
emails[i]
都包含有且仅有一个'@'
字符 - 所有本地名和域名都不为空
- 本地名不会以
'+'
字符作为开头 - 域名以
".com"
后缀结尾。 - 域名在
".com"
后缀前至少包含一个字符
我们可以用一个哈希表
最后返回哈希表
时间复杂度
class Solution:
def numUniqueEmails(self, emails: List[str]) -> int:
s = set()
for email in emails:
local, domain = email.split("@")
t = []
for c in local:
if c == ".":
continue
if c == "+":
break
t.append(c)
s.add("".join(t) + "@" + domain)
return len(s)
class Solution {
public int numUniqueEmails(String[] emails) {
Set<String> s = new HashSet<>();
for (String email : emails) {
String[] parts = email.split("@");
String local = parts[0];
String domain = parts[1];
StringBuilder t = new StringBuilder();
for (char c : local.toCharArray()) {
if (c == '.') {
continue;
}
if (c == '+') {
break;
}
t.append(c);
}
s.add(t.toString() + "@" + domain);
}
return s.size();
}
}
class Solution {
public:
int numUniqueEmails(vector<string>& emails) {
unordered_set<string> s;
for (const string& email : emails) {
size_t atPos = email.find('@');
string local = email.substr(0, atPos);
string domain = email.substr(atPos + 1);
string t;
for (char c : local) {
if (c == '.') {
continue;
}
if (c == '+') {
break;
}
t.push_back(c);
}
s.insert(t + "@" + domain);
}
return s.size();
}
};
func numUniqueEmails(emails []string) int {
s := make(map[string]struct{})
for _, email := range emails {
parts := strings.Split(email, "@")
local := parts[0]
domain := parts[1]
var t strings.Builder
for _, c := range local {
if c == '.' {
continue
}
if c == '+' {
break
}
t.WriteByte(byte(c))
}
s[t.String()+"@"+domain] = struct{}{}
}
return len(s)
}
function numUniqueEmails(emails: string[]): number {
const s = new Set<string>();
for (const email of emails) {
const [local, domain] = email.split('@');
let t = '';
for (const c of local) {
if (c === '.') {
continue;
}
if (c === '+') {
break;
}
t += c;
}
s.add(t + '@' + domain);
}
return s.size;
}
use std::collections::HashSet;
impl Solution {
pub fn num_unique_emails(emails: Vec<String>) -> i32 {
let mut s = HashSet::new();
for email in emails {
let parts: Vec<&str> = email.split('@').collect();
let local = parts[0];
let domain = parts[1];
let mut t = String::new();
for c in local.chars() {
if c == '.' {
continue;
}
if c == '+' {
break;
}
t.push(c);
}
s.insert(format!("{}@{}", t, domain));
}
s.len() as i32
}
}
/**
* @param {string[]} emails
* @return {number}
*/
var numUniqueEmails = function (emails) {
const s = new Set();
for (const email of emails) {
const [local, domain] = email.split('@');
let t = '';
for (const c of local) {
if (c === '.') {
continue;
}
if (c === '+') {
break;
}
t += c;
}
s.add(t + '@' + domain);
}
return s.size;
};