Skip to content

Commit b7db4ca

Browse files
committed
Done with the required changes
1 parent 6cc39c0 commit b7db4ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maths/fibonacci.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def matrix_pow_np(m: ndarray, power: int) -> ndarray:
267267
...
268268
ValueError: power is negative
269269
"""
270-
result = np.array([[1, 0], [0, 1]], dtype=int) # Identity matrix
270+
result = np.array([[1, 0], [0, 1]], dtype=int) # Identity Matrix
271271
base = m
272272
while power:
273273
if power % 2 == 1:

0 commit comments

Comments
 (0)