Build a company tree and compute each employee's direct and indirect report count.
Constraints
Example
```python
>>> report_counts([("Alice", "Bob"), ("Bob", "Carol")])
{'Alice': 2, 'Bob': 1, 'Carol': 0}
>>> report_counts([("CEO", "VP"), ("CEO", "Dev"), ("VP", "Intern")])
{'CEO': 3, 'VP': 1, 'Dev': 0, 'Intern': 0}
>>> report_counts([])
{}
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints