You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add O(log n) lucas number implementation using matrix exponentiation
Added dynamic_lucas_number_logn function that uses matrix exponentiation
to compute Lucas numbers in logarithmic time complexity, compared to
the existing O(n) and O(n) recursive implementations.
Updated module exports to include the new function and added comprehensive
test coverage for all three implementations.
0 commit comments