Fix the build typo: fn --> fn1 (#1205)

This commit is contained in:
Christian Clauss 2019-09-26 17:32:04 +02:00 committed by Parth Shandilya
parent 2375bfbee5
commit a79fc2b92a

View File

@ -64,7 +64,7 @@ def simple_fibonacci(n, f1, f2):
fn_1, fn_2 = fn_1 + fn_2, fn_1
n -= 1
return fn
return fn_1
def matrix_exponentiation_time():