Barcelona | OCT-2025-2 | Iheb Hamdi | Sprint 2 |Improve with cahces| Module-Complexity - #4
Open
hamdiheb wants to merge 7 commits into
Open
Barcelona | OCT-2025-2 | Iheb Hamdi | Sprint 2 |Improve with cahces| Module-Complexity#4hamdiheb wants to merge 7 commits into
hamdiheb wants to merge 7 commits into
Conversation
…llowing the best code complexity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
fibonacciwith a dict cache threaded through recursive calls, turning exponential recursion into linear time.ways_to_make_changeas bottom-up DP, using awayslist as the cache (ways[amount]= ways to make that amount with the coins considered so far). Avoids both the original's near-quadratic blowup and a Python recursion-depth crash hit while prototyping a memoized-recursive version for large totals (e.g.total=9176).@cachedecorator used, per exercise constraints.