An open API service indexing awesome lists of open source software.

https://github.com/mxssl/fibonaccigolang

Fibonacci sequence implementation in Go (Golang).
https://github.com/mxssl/fibonaccigolang

algorithm fibonacci fibonacci-numbers fibonacci-sequence go golang

Last synced: 3 months ago
JSON representation

Fibonacci sequence implementation in Go (Golang).

Awesome Lists containing this project

README

        

# Fibonacci sequence

Fibonacci sequence implementation in Go (Golang).

`Time complexity: O(n)`

`Space complexity: O(1)`

```Bash
$ go test -v ./...
=== RUN TestCase1
--- PASS: TestCase1 (0.00s)
=== RUN TestCase2
--- PASS: TestCase2 (0.00s)
PASS
ok github.com/mxssl/FibonacciGolang 0.005s
```