Skip to content

Commit 1256b7a

Browse files
cclaussstokhos
authored andcommitted
Fix the build typo: fn --> fn1 (TheAlgorithms#1205)
1 parent b16aaed commit 1256b7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: maths/matrix_exponentiation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def simple_fibonacci(n, f1, f2):
6464
fn_1, fn_2 = fn_1 + fn_2, fn_1
6565
n -= 1
6666

67-
return fn
67+
return fn_1
6868

6969

7070
def matrix_exponentiation_time():

0 commit comments

Comments
 (0)