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

https://github.com/dbc2201/fibonaccisequencerecursive


https://github.com/dbc2201/fibonaccisequencerecursive

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Question Title

## Java Programming Course

---

**Course 1**: Problem-Solving and Computational Thinking using Java

**Sprint 7**: Implementing Recursion

---

Problem Statement
---

Write a program in `Java` to calculate the `n`th term of the Fibonacci series recursively using the following formula:

```
Fibonacci(n) = Fibonacci(n-1) + Fibonacci(n-2)
```

---

Task
---

1. Open the [source code file](src/main/java/io/github/dbc/RecursiveFibonacciSequenceGenerator.java) and complete the code.
2. Open the [test case file](src/test/java/io/github/dbc/RecursiveFibonacciSequenceGeneratorTest.java) and run the test cases to
check your code.

---

Fun Resource
---

1. [Fibonacci Programming - Computerphile](https://youtu.be/7t_pTlH9HwA)
2. [Complex Fibonacci Numbers?](https://youtu.be/ghxQA3vvhsk)
3. [The magic of Fibonacci numbers | Arthur Benjamin](https://youtu.be/SjSHVDfXHQ4)