- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHackerrankJava0057.java
More file actions
Latest commit
54 lines (49 loc) · 1.55 KB
/
Copy pathHackerrankJava0057.java
File metadata and controls
54 lines (49 loc) · 1.55 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
importjava.io.BufferedReader;
importjava.io.InputStreamReader;
importjava.lang.reflect.Method;
importjava.util.Arrays;
importjava.util.HashSet;
importjava.util.Set;
importjava.util.stream.Collectors;
publicclassHackerrankJava0057 {
publicstaticvoidmain(String[] args) {
// Java Varargs - Simple Addition
// https://www.hackerrank.com/challenges/simple-addition-varargs/problem?isFullScreen=true
try {
BufferedReaderbr = newBufferedReader(newInputStreamReader(System.in));
intn1 = Integer.parseInt(br.readLine());
intn2 = Integer.parseInt(br.readLine());
intn3 = Integer.parseInt(br.readLine());
intn4 = Integer.parseInt(br.readLine());
intn5 = Integer.parseInt(br.readLine());
intn6 = Integer.parseInt(br.readLine());
Addob = newAdd();
ob.add(n1, n2);
ob.add(n1, n2, n3);
ob.add(n1, n2, n3, n4, n5);
ob.add(n1, n2, n3, n4, n5, n6);
Method[] methods = Add.class.getDeclaredMethods();
Set<String> set = newHashSet<>();
booleanoverload = false;
for (inti = 0; i < methods.length; i++) {
if (set.contains(methods[i].getName())) {
overload = true;
break;
}
set.add(methods[i].getName());
}
if (overload) {
thrownewException("Overloading not allowed");
}
} catch (Exceptione) {
e.printStackTrace();
}
}
}
classAdd {
publicvoidadd(int... values) {
intsum = Arrays.stream(values).sum();
StringequationLeftSide = Arrays.stream(values).mapToObj(String::valueOf).collect(Collectors.joining("+"));
System.out.println(equationLeftSide + "=" + sum);
}
}