-
Notifications
You must be signed in to change notification settings - Fork 168
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 Merge Sort Algorithm Implementation #19
Labels
Comments
Can you assign it to me @harsh-dart |
please assign it to me |
Hi @harsh-dart please assign me this task. |
/assign |
Link to PR --> #110 |
Hey please assign this issue to me for Hactoberfest 2024. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Objective:
I would like to contribute to this repository by adding the code implementation of the Merge Sort algorithm in Python. Merge Sort is a well-known and efficient sorting algorithm with a time complexity of O(n log n). It operates by dividing the array into halves, recursively sorting them, and then merging the sorted halves together.
Implementation Details:
The function will take an unsorted list as input and return a sorted list using the merge sort technique. The implementation will ensure that it meets the standard coding guidelines of the repository.
Input:
arr
, where:Output:
Example Test Case:
Input:
Output:
Constraints:
Request for Label:
Please assign the Hacktoberfest label to this issue to indicate that this contribution is part of Hacktoberfest 2024.
Additional Request:
Once the issue is approved, kindly assign it to me so I can begin working on it.
Thank you for considering this contribution!
The text was updated successfully, but these errors were encountered: