Skip to content

Commit

Permalink
Changed Output to arrow in: (#2195)
Browse files Browse the repository at this point in the history
Gopher's Gorgeous Lasagna
Fixes #2194
  • Loading branch information
TristanAppDev authored Apr 25, 2022
1 parent 27b9db5 commit 997c62d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions exercises/concept/lasagna/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Define the `OvenTime` constant with how many minutes the lasagna should be in th

```go
OvenTime
// Output: 40
// => 40
```

## 2. Calculate the remaining oven time in minutes
Expand All @@ -23,7 +23,7 @@ func RemainingOvenTime(actual int) int {
}

RemainingOvenTime(30)
// Output: 10
// => 10
```

## 3. Calculate the preparation time in minutes
Expand All @@ -36,7 +36,7 @@ func PreparationTime(numberOfLayers int) int {
}

PreparationTime(2)
// Output: 4
// => 4
```

## 4. Calculate the elapsed working time in minutes
Expand All @@ -50,5 +50,5 @@ func ElapsedTime(numberOfLayers, actualMinutesInOven int) int {
}

ElapsedTime(3, 20)
// Output: 26
// => 26
```

0 comments on commit 997c62d

Please sign in to comment.