Software Engineer · Senior-Level · Phone Screen
The prompt provides class definitions for `Monster` and `Team`: ``` class Monster { String name; // Unique identifier of the monster. int health; // Initial hit points. int attack; // Damage inflicted when attacking. ... } class Team { String label; // Team id...