LeetCode From Easy To Hard No10 [easy]: 이메일 주소 고유성
3419 단어 LeetCode
For example, in
[email protected]
, 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, "[email protected]"
and "[email protected]"
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 [email protected]
will be forwarded to [email protected]
. (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: ["[email protected]","[email protected]","[email protected]"]
Output: 2
Explanation: "[email protected]" and "[email protected]" actually receive mails
Note:
1 <= emails[i].length <= 100
1 <= emails.length <= 100
emails[i]
contains exactly one '@'
character. '+'
character. 제목 분석: 이메일 address 그룹을 지정하고 몇 개의 다른 이메일 adress를 출력하는지, 이메일 adress는 "@"를 분할점으로 한다
① "@"왼쪽에 "."이 나타나면예를 들어 [email protected]사실[email protected];"+"가 나타나면 "+"에서 "@"사이의 내용은 모두 무시됩니다. 예를 들어 [email protected]+n사실[email protected]+n;
② "@"오른쪽에 "만약 나타난다면.""+"와는 아무런 변화가 없을 것이다.
Set 컬렉션을 사용하여 중복된 요소가 포함되지 않은 특성의 중량을 제거합니다.
import java.util.HashSet;
import java.util.Set;
class Solution {
public static int numUniqueEmails(String[] emails) {
Set set = new HashSet(); // set
for (String e : emails) {
int atIndex = e.indexOf("@"); // @
StringBuffer sb = new StringBuffer();
for (int i = 0; i < atIndex; i++) { // @
if (e.charAt(i) == '.') continue; // “.”
if (e.charAt(i) == '+') { // “+”
break;
} else {
sb.append(e.charAt(i));
}
}
set.add(sb.append("@").append(e.substring(atIndex)).toString()); // “@” “@” , Set 。
}
return set.size();
}
public static void main(String[] args) {
String[] emails = {"[email protected]", "[email protected]"};
System.out.println(new Solution().numUniqueEmails(emails));
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 문자열 입력으로 모든 유효한 IP 주소 생성(LeetCode 93번 문제)이 문제의 공식 난이도는 Medium으로 좋아요 1296, 반대 505, 통과율 35.4%를 눌렀다.각 항목의 지표로 말하자면 보기에는 약간 규범에 맞는 것 같지만, 실제로도 확실히 그렇다.이 문제의 해법과 의도는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.