Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Solution {
- public int fib(int n) {
- // https://visualgo.net/en/recursion
- if (n <= 1) {
- return n;
- }
- return fib(n - 1) + fib(n - 2);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement