We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54c05bb commit a90a99bCopy full SHA for a90a99b
src/test/java/com/github/streams/interview/problems/employee/C_SumOfSalaryInEachDept.java
@@ -8,16 +8,17 @@
8
import org.junit.jupiter.api.Test;
9
10
/**
11
- * Calculation of the sum of salaries in each department.<br/>
+ * Calculation of the sum of salaries in each department.<br>
12
*
13
* <h2>Input:</h2>
14
15
- * <li>Employee("John", "Sales", 50000)</li>
16
- * <li>Employee("Jane", "Marketing", 60000)</li>
17
- * <li>Employee("Bob", "Sales", 70000)</li>
18
- * <br/>
19
- * <h2>Output:</h2>
20
- * <pre>
+ * <li>Employee("John", "Sales", 50000)
+ * <li>Employee("Jane", "Marketing", 60000)
+ * <li>Employee("Bob", "Sales", 70000) <br>
+ *
+ * <h2>Output:</h2>
21
+ * <pre>
22
* {
23
* "Sales": 120000,
24
* "Marketing": 60000
0 commit comments