-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Add Ternary Search Algorithm #749
Comments
I would like to work on this. |
can you please assign me this task |
Bro, I am not a maintainer of this repo I was looking to contribute like you only. |
@ritikverma2000 actually i have to contribute because I have to submit my PR link as my technical assessment for Internship...... |
@nk636547 if you want to contribute in open source, visit here https://github.com/rahulpandey70/LeetCode-Questions and contribute freely. |
I will solve this issue |
Ternary Search
Its a divide and conquer based searching algorithm which is very similar to binary search. Here the array/list is divided into three parts and is determined that which part has the element to be searched. Its time complexity is log(n base 3). I found this algorithm to be missing from this repository.
The text was updated successfully, but these errors were encountered: