We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6526b1 commit 9aab5e0Copy full SHA for 9aab5e0
src/main/java/com/fishercoder/common/classes/Employee.java
@@ -2,16 +2,19 @@
2
3
import java.util.List;
4
5
-/**
6
- * Created by stevesun on 9/29/17.
7
- */
8
public class Employee {
9
- // It's the unique id of each node;
10
- // unique id of this employee
+ /**
+ * It's the unique id of each node;
+ * unique id of this employee
+ */
11
public int id;
12
- // the importance value of this employee
+ * the importance value of this employee
13
14
public int importance;
- // the id of direct subordinates
15
16
+ * the id of direct subordinates
17
18
public List<Integer> subordinates;
19
20
public Employee(int id, int importance, List<Integer> subordinates) {
0 commit comments