It's time for your first Boots interview lesson!
In these lessons, Boots turns on you! He becomes your interviewer rather than your tutor. Answer his open-ended question or follow his instructions. The chat will continue until he’s satisfied that your responses meet the acceptance criteria.
Treat it like a real interview:
Boots will respond in one of three ways:
Reference the following code snippet to answer Boots' question:
def calculate_damage(opening_attack, core_damage, finishing_move):
total = opening_attack + core_damage + finishing_move
return total
first_damage = calculate_damage(10, 20, 30)
second_damage = calculate_damage(5, 10, 15)
third_damage = calculate_damage(50, 60, 70)
print(first_damage)
print(second_damage)
print(third_damage)