mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
907 B
907 B
Hints
1. Calculate the interest rate
- You are expected to return a percentage.
2. Calculate the interest
- When calculating interest, it might be helpful to notice that
interest_rate
returns a percentage. - You can use the function defined in the previous task (
interest_rate
) to calculate the interest.
3. Calculate the annual balance update
- When calculating the annual balance update, use the functions that have been defined in the previous steps.