@ -17,7 +17,7 @@ A negative index will return `-1`.
```go
package main
func Fibonacci(int index) int {
func Fibonacci(index int) int {
}
```
@ -17,7 +17,7 @@ Un index négatif renvoie `-1`.
@ -9,7 +9,7 @@ The function must be optimized in order to avoid time-outs with the tester.
### Expected function
func FindNextPrime(int nb) int {
func FindNextPrime(nb int) int {
@ -9,7 +9,7 @@ La fonction devra être optimisée pour éviter les time-outs avec le testeur.
### Fonction attendue
func IsPrime(int nb) bool {
func IsPrime(nb int) bool {
@ -9,7 +9,7 @@ Errors (non possible values or overflows) will return `0`.
func IterativeFactorial(int nb) int {
func IterativeFactorial(nb int) int {
@ -9,7 +9,7 @@ Les erreurs (valeurs non possibles ou overflows) renverront `0`.
@ -9,7 +9,7 @@ Negative powers will return `0`. Overflows do **not** have to be dealt with.
func IterativePower(int nb, int power) int {
func IterativePower(nb int, power int) int {
@ -9,7 +9,7 @@ Les puissances négatives renverront `0`. Les overflows **ne doivent pas** être
@ -11,7 +11,7 @@ Errors (non possible values or overflows) will return `0`.
func RecursiveFactorial(int nb) int {
func RecursiveFactorial(nb int) int {
@ -11,7 +11,7 @@ Les erreurs (valeurs non possibles ou overflows) renverront `0`.
@ -11,7 +11,7 @@ Negative powers will return `0`. Overflows do **not** have to be dealt with.
func RecursivePower(int nb, int power) int {
func RecursivePower(nb int, power int) int {
@ -11,7 +11,7 @@ Les puissances négatives renverront `0`. Les overflows **ne doivent pas** être
@ -7,7 +7,7 @@ Write a function that returns the square root of the `int` passed as parameter i
func Sqrt(int nb) int {
func Sqrt(nb int) int {
@ -7,7 +7,7 @@