...

/

Solution: Last Digit of Fibonacci Number

Solution: Last Digit of Fibonacci Number

Solution for the Last Digit of the Fibonacci Number Problem.

Naive solution

To solve this problem, let’s compute FnF_n and simply output its last digit:


 FibonacciLastDigit(n)FibonacciLastDigit(n):
 if n1n\leq 1:
  return nn
 allocate an array F[0..n+1]F[0..n+1]
 F[0]0F[0] \gets 0
 F[1]1F[1] \gets 1 ...