diff --git a/exercises/concept/currency-exchange/.docs/hints.md b/exercises/concept/currency-exchange/.docs/hints.md index cdffbb0a..95906ef1 100644 --- a/exercises/concept/currency-exchange/.docs/hints.md +++ b/exercises/concept/currency-exchange/.docs/hints.md @@ -4,11 +4,11 @@ - [The Python Numbers Tutorial][python-numbers-tutorial] and [Python numeric types][python-numeric-types] can be a great introduction. -## 1. Estimating exchangeable value +## 1. Estimate value after exchange - You can use the [division operator][division-operator] to get the value of exchanged currency. -## 2. Changes after exchanging +## 2. Calculate currency left after an exchange - You can use the [subtraction operator][subtraction-operator] to get the amount of changes. @@ -24,7 +24,7 @@ **Note:** The `//` operator also does floor division. But, if the operand has `float`, the result is still `float`. -## 5. Calculate exchangeable value +## 5. Calculate value after exchange - You need to calculate `spread` percent of `exchange_rate` using multiplication operator and add it to `exchange_rate` to get the exchanged currency. - The actual rate needs to be computed. Remember to add exchange rate and exchange fee. diff --git a/exercises/concept/tisbury-treasure-hunt/.docs/hints.md b/exercises/concept/tisbury-treasure-hunt/.docs/hints.md index 2e773004..94c445aa 100644 --- a/exercises/concept/tisbury-treasure-hunt/.docs/hints.md +++ b/exercises/concept/tisbury-treasure-hunt/.docs/hints.md @@ -28,7 +28,7 @@ - Remember that tuples support all [common sequence operations][common sequence operations]. - Could you re-use your `compare_records()` function here? -## 5. "Clean up" and format a report of all records +## 5. "Clean up" & format a report of all records - Remember: tuples are _immutable_, but the contents can be accessed via _index_ using _bracket notation_. - Tuples don't have to use parentheses unless there is _ambiguity_.