Skip to content

Add Exponential Search algorithm to searches module #12645

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

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Prev Previous commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 30, 2025
commit 8be9d1add38e07132c1fd781cd7e0cca7f5afb62
1 change: 1 addition & 0 deletions data_structures/disjoint_set/union_find.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
Author: Michael Alexander Montoya
"""


class UnionFind:
def __init__(self, size: int) -> None:
"""
Expand Down