You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-algorithms/numerical/fibonacci.go

10 lines
129 B
Go

package numerical
//using recursion
func fibo(num int) int {
if num <= 1 {
return num
}
return fibo(num-1) + fibo(num-2)
}