https://leetcode.com/problems/employee-importance/
| 6 | * https://leetcode.com/problems/employee-importance/ |
| 7 | */ |
| 8 | class Employee { |
| 9 | public int id; |
| 10 | public int importance; |
| 11 | public List<Integer> subordinates; |
| 12 | |
| 13 | public Employee(int id, int importance, List<Integer> subordinates) { |
| 14 | this.id = id; |
| 15 | this.importance = importance; |
| 16 | this.subordinates = subordinates; |
| 17 | } |
| 18 | |
| 19 | } |
| 20 | |
| 21 | public class Sanghoo { |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected