码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode - Unique Email Addresses

时间:2018-11-18 11:31:50      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:cat   col   some   mail   receive   sig   art   put   ali   

Every email consists of a local name and a domain name, separated by the @ sign.

For example, in alice@leetcode.com, alice is the local name, and leetcode.com is the domain name.

Besides lowercase letters, these emails may contain ‘.‘s or ‘+‘s.

If you add periods (‘.‘) between some characters in the local name part of an email address, mail sent there will be forwarded to the same address without dots in the local name.  For example, "alice.z@leetcode.com" and "alicez@leetcode.com" forward to the same email address.  (Note that this rule does not apply for domain names.)

If you add a plus (‘+‘) in the local name, everything after the first plus sign will be ignored. This allows certain emails to be filtered, for example m.y+name@email.com will be forwarded to my@email.com.  (Again, this rule does not apply for domain names.)

It is possible to use both of these rules at the same time.

Given a list of emails, we send one email to each address in the list.  How many different addresses actually receive mails? 

 

Example 1:

Input: ["test.email+alex@leetcode.com","test.e.mail+bob.cathy@leetcode.com","testemail+david@lee.tcode.com"]
Output: 2
Explanation: "testemail@leetcode.com" and "testemail@lee.tcode.com" actually receive mails

Hash

class Solution {
    public int numUniqueEmails(String[] emails) {
        if(emails == null || emails.length == 0){
            return 0;
        }
        Set<String> set = new HashSet<>();
        for(String email : emails){
            String[] strs = email.split("@");
            String localName = strs[0];
            String domainName = strs[1];
            StringBuilder sb = new StringBuilder();
            for(char c : localName.toCharArray()){
                if(c == ‘.‘){
                    continue;
                }
                else if(c == ‘+‘){
                    break;
                }
                else{
                    sb.append(c);
                }
            }
            set.add(sb.toString() + "@" + domainName);
        }
        return set.size();
    }
}

 

LeetCode - Unique Email Addresses

标签:cat   col   some   mail   receive   sig   art   put   ali   

原文地址:https://www.cnblogs.com/incrediblechangshuo/p/9977047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!