-
Notifications
You must be signed in to change notification settings - Fork 183
/
22 - Day 21 - Generics.java
50 lines (42 loc) · 1.42 KB
/
22 - Day 21 - Generics.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
44
45
46
47
48
49
50
// ========================
// Information
// ========================
// Direct Link: https://www.hackerrank.com/challenges/30-generics/problem
// Difficulty: Easy
// Max Score: 30
// Language: Java
// ========================
// Solution
// ========================
// This problem does not have the option to be done in Python, hence, Java 8 was chosen
import java.util.*;
class Printer <T> {
// Write your code here
public static <E> void printArray(E[] generic) {
for(E element : generic) {
System.out.println(element);
}
}
}
public class Generics {
public static void main(String args[]) {
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
Integer[] intArray = new Integer[n];
for (int i = 0; i < n; i++) {
intArray[i] = scanner.nextInt();
}
n = scanner.nextInt();
String[] stringArray = new String[n];
for (int i = 0; i < n; i++) {
stringArray[i] = scanner.next();
}
Printer<Integer> intPrinter = new Printer<Integer>();
Printer<String> stringPrinter = new Printer<String>();
intPrinter.printArray( intArray );
stringPrinter.printArray( stringArray );
if(Printer.class.getDeclaredMethods().length > 1) {
System.out.println("The Printer class should only have 1 method named printArray.");
}
}
}