The tech screen was the type of problem where the input data is poorly structured, and the interviewee is required to parse the data into a variety of presentational formats. "Here's an array of arrays of possible employees for a job and their hourly rate. Here's an array of arrays of available jobs over the course of a week. Create an employee schedule that is most cost efficient."
Sigiloso
Destructured the arrays into arrays of objects and iterated over the jobs to create a schedule.