Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize extend_safe function performance using set-based lookups #30

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

allrob23
Copy link

@allrob23 allrob23 commented Mar 2, 2025

Description

This PR optimizes the extend_safe function by replacing linear searches with constant-time set lookups, reducing time complexity from O(n*m) to O(n+m).

Changes

  • Modified extend_safe to use a set for checking element existence
  • Maintain a set copy of the target list to enable O(1) lookups
  • Update the set as new elements are added to keep it in sync

Performance Impact

  • Before: O(n*m) where n = len(target) and m = len(source)
  • After: O(n+m) with constant-time membership checks

Testing

  • Tested with various input sizes to verify correctness and performance improvement
  • Maintains identical functionality while significantly improving execution time for large lists

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant