This commit is contained in:
Augusto 2021-09-17 15:10:16 +01:00
parent bd67fd2b5f
commit 64280edf52
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Write a **recursive** function that returns the the value of `nb` to the power `power`.
Write a **recursive** function that returns the value of `nb` to the power of `power`.
Negative powers will return `0`. Overflows do **not** have to be dealt with.