From 8579989e2a36fec04a61c173e975da5867ac806c Mon Sep 17 00:00:00 2001 From: Edward Banner Date: Mon, 2 Jun 2025 07:03:43 -0400 Subject: [PATCH 1/2] Update lasagna.py --- exercises/concept/guidos-gorgeous-lasagna/lasagna.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/exercises/concept/guidos-gorgeous-lasagna/lasagna.py b/exercises/concept/guidos-gorgeous-lasagna/lasagna.py index a3df0ab2da0..600830c3536 100644 --- a/exercises/concept/guidos-gorgeous-lasagna/lasagna.py +++ b/exercises/concept/guidos-gorgeous-lasagna/lasagna.py @@ -27,9 +27,6 @@ def bake_time_remaining(): #TODO: Define the 'preparation_time_in_minutes()' function below. -# You might also consider defining a 'PREPARATION_TIME' constant. -# You can do that on the line below the 'EXPECTED_BAKE_TIME' constant. -# This will make it easier to do calculations. From f683bf9aea1d10a21e08b580eb32be1821871c4e Mon Sep 17 00:00:00 2001 From: Edward Banner Date: Mon, 2 Jun 2025 07:07:43 -0400 Subject: [PATCH 2/2] Update instructions.md --- exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md b/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md index fce16c46795..8c22b255447 100644 --- a/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md +++ b/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md @@ -53,7 +53,7 @@ Assume each layer takes 2 minutes to prepare. ## 4. Calculate total elapsed cooking time (prep + bake) in minutes Define the `elapsed_time_in_minutes()` function that takes two parameters as arguments: `number_of_layers` (_the number of layers added to the lasagna_) and `elapsed_bake_time` (_the number of minutes the lasagna has been baking in the oven_). -This function should return the total number of minutes you have been cooking, or the sum of your preparation time and the time the lasagna has already spent baking in the oven. +This function should return the total number of minutes you have been working, or the sum of your preparation time and the time the lasagna has already spent baking in the oven. ```python >>> def elapsed_time_in_minutes(number_of_layers, elapsed_bake_time):