Skip to content

Commit a90a99b

Browse files
committed
Add documentation to B_MaxSalaryInEachDept.java
1 parent 54c05bb commit a90a99b

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/test/java/com/github/streams/interview/problems/employee/C_SumOfSalaryInEachDept.java

+8-7
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,17 @@
88
import org.junit.jupiter.api.Test;
99

1010
/**
11-
* Calculation of the sum of salaries in each department.<br/>
11+
* Calculation of the sum of salaries in each department.<br>
1212
*
1313
* <h2>Input:</h2>
1414
*
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>
15+
* <li>Employee("John", "Sales", 50000)
16+
* <li>Employee("Jane", "Marketing", 60000)
17+
* <li>Employee("Bob", "Sales", 70000) <br>
18+
*
19+
* <h2>Output:</h2>
20+
*
21+
* <pre>
2122
* {
2223
* "Sales": 120000,
2324
* "Marketing": 60000

0 commit comments

Comments
 (0)