Skip to content

Commit

Permalink
update after feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasnorre committed Jan 29, 2025
1 parent 8bb6157 commit 92c6ac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/cars-assemble/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ You have two tasks.

## 1. Calculate the production rate per hour

Implement the `CarsAssemble.productionRatePerHour()` method to calculate the assembly line's production rate per hour, taking into account its current assembly line's speed :
Implement the `CarsAssemble.productionRatePerHour()` method to calculate the assembly line's production rate per hour, taking into account its current assembly line's speed and success rate:

```Java
CarsAssemble.productionRatePerHour(6)
// => 1193.4
```

Note that the value returned is a `double`. You will need to take the success rate into account to get the correct result.
Note that the value returned is a `double`.

## 2. Calculate the number of working items produced per minute

Expand Down

0 comments on commit 92c6ac2

Please sign in to comment.