forked from sknsht/HackerRank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
36 lines (31 loc) · 936 Bytes
/
Solution.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
import java.util.*;
public class Main {
static Iterator func(ArrayList mylist) {
Iterator it = mylist.iterator();
while (it.hasNext()) {
Object element = it.next();
if (element instanceof String)//Hints: use instanceof operator
break;
}
return it;
}
@SuppressWarnings({"unchecked"})
public static void main(String[] args) {
ArrayList mylist = new ArrayList();
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt();
for (int i = 0; i < n; i++) {
mylist.add(sc.nextInt());
}
mylist.add("###");
for (int i = 0; i < m; i++) {
mylist.add(sc.next());
}
Iterator it = func(mylist);
while (it.hasNext()) {
Object element = it.next();
System.out.println((String) element);
}
}
}