Difficulty: Medium
Acceptance: 60.00%
Points: 30.00
You are given a positive integer N. Your task is to compute the Nth Fibonacci number using tree recursion, where each function call makes two recursive calls to compute the previous two Fibonacci values. The Fibonacci sequence follows: F(0) = 0, F(1) = 1 F(n) = F(n-1) + F(n-2) Return the value of the Nth Fibonacci number.
N/A
