-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHackerrankJava0049.java
More file actions
45 lines (37 loc) · 995 Bytes
/
HackerrankJava0049.java
File metadata and controls
45 lines (37 loc) · 995 Bytes
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
44
45
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Scanner;
public class HackerrankJava0049 {
@SuppressWarnings({ "unchecked" })
public static void main(String[] args) {
// Java Iterator
// https://www.hackerrank.com/challenges/java-iterator/problem?isFullScreen=true
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);
}
}
static Iterator func(ArrayList mylist) {
Iterator it = mylist.iterator();
while (it.hasNext()) {
// --- You need to update this line ---
Object element = it.next();
// --- You need to update this line ---
if (element instanceof String)
break;
}
return it;
}
}