Files
Exercism/julia/lasagna/HINTS.md

951 B

Hints

General

1. Store the expected bake time in a constant

  • Define a const to store this value.

2. Calculate the preparation time in minutes

3. Calculate the remaining oven time in minutes

4. Calculate the total working time in minutes

  • Reuse the preparation_time function defined in the first step.
  • Use the plus arithmetic operator to add the return value of preparation_time to the argument.