https://github.com/dbc2201/fibonaccisequencerecursive
https://github.com/dbc2201/fibonaccisequencerecursive
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dbc2201/fibonaccisequencerecursive
- Owner: dbc2201
- Created: 2022-06-28T16:41:38.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-28T16:41:42.000Z (about 4 years ago)
- Last Synced: 2025-02-12T08:39:37.275Z (over 1 year ago)
- Language: Java
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)