Skip to content

Instantly share code, notes, and snippets.

View SlimTim10's full-sized avatar

Tim Johns SlimTim10

View GitHub Profile

Employee Hierarchies Problem Set

This problem set explores a number of questions related to a company and its employees; specifically, its hierarchy of management:

const employees = [
  { name: 'Alice',  manager: null,    title: 'CEO' },
  { name: 'Bob',    manager: 'Alice', title: 'Head of Marketing' },
 { name: 'Carol', manager: 'Alice', title: 'Head of Engineering' },