mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
734 B
51 lines
734 B
6 years ago
|
## fibonacci
|
||
6 years ago
|
|
||
5 years ago
|
### Instructions
|
||
6 years ago
|
|
||
|
Write an **recursive** function that returns the value of fibonacci sequence matching the index passed as parameter.
|
||
|
|
||
|
The first value is at index `0`.
|
||
|
|
||
|
The sequence starts this way: 0, 1, 1, 2, 3 etc...
|
||
|
|
||
|
A negative index will return `-1`.
|
||
|
|
||
|
`for` is **forbidden** for this exercise.
|
||
|
|
||
6 years ago
|
### Expected function
|
||
6 years ago
|
|
||
|
```go
|
||
5 years ago
|
package piscine
|
||
6 years ago
|
|
||
5 years ago
|
func Fibonacci(index int) int {
|
||
6 years ago
|
|
||
|
}
|
||
|
```
|
||
|
|
||
6 years ago
|
### Usage
|
||
6 years ago
|
|
||
5 years ago
|
Here is a possible program to test your function :
|
||
6 years ago
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
5 years ago
|
"fmt"
|
||
|
piscine ".."
|
||
6 years ago
|
)
|
||
|
|
||
|
func main() {
|
||
|
arg1 := 4
|
||
|
fmt.Println(piscine.Fibonacci(arg1))
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
6 years ago
|
3
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|