Skip to content

Commit ab72a03

Browse files
committed
Fix whitespace issue in fibonacci.py
1 parent b6570ea commit ab72a03

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

maths/fibonacci.py

+5
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,14 @@ def fib_memo(n):
4444

4545
else:
4646
raise ValueError(
47+
<<<<<<< HEAD
4748
"Invalid method. Choose 'iterative', 'recursive', or 'memoized'."
4849
)
4950

51+
=======
52+
"Invalid method. Choose 'iterative', 'recursive', or 'memoized'."
53+
)
54+
>>>>>>> 7237ecd5 (Fix whitespace issue in fibonacci.py)
5055

5156
# Example Usage:
5257
if __name__ == "__main__":

0 commit comments

Comments
 (0)