-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDay28.java
More file actions
35 lines (32 loc) · 1.01 KB
/
Day28.java
File metadata and controls
35 lines (32 loc) · 1.01 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
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.function.*;
import java.util.regex.*;
import java.util.stream.*;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.toList;
public class Solution {
public static void main(String[] args) throws IOException {
Scanner scanner = new Scanner(System.in);
int num = scanner.nextInt();
String emailRegEx = ".+@gmail\\.com$";
Pattern pattern = Pattern.compile(emailRegEx);
List<String> list = new ArrayList();
for (int i = 0; i < num; i++){
String name = scanner.next();
String email = scanner.next();
Matcher matcher = pattern.matcher(email);
if (matcher.find()){
list.add(name);
}
}
Collections.sort(list);
for (String name : list){
System.out.println(name);
}
}
}