-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegex.java
43 lines (36 loc) · 1.34 KB
/
Regex.java
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
41
42
43
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;
/*
Name: Regex
Source: HackerRank
Link: https://www.hackerrank.com/challenges/30-regex-patterns/problem
Statement: Consider a database table, Emails, which has the attributes First Name and Email ID. Given N rows of data
simulating the Emails table, print an alphabetically-ordered list of people whose email address ends in @gmail.com
*/
public class Regex {
private static final Scanner scanner = new Scanner(System.in);
public static void main(String[] args) {
int N = scanner.nextInt();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
ArrayList<String> names = new ArrayList<String>();
String myRegex = "[a-z][email protected]";
Pattern p = Pattern.compile(myRegex);
for (int NItr = 0; NItr < N; NItr++) {
String[] firstNameEmailID = scanner.nextLine().split(" ");
String firstName = firstNameEmailID[0];
String emailID = firstNameEmailID[1];
Matcher m = p.matcher(emailID);
while(m.find()){
names.add(firstName);
}
}
Collections.sort(names);
names.forEach((i)->System.out.println(i));
scanner.close();
}
}