-
Notifications
You must be signed in to change notification settings - Fork 82
Implement Merge Sort in Python #202
Copy link
Copy link
Open
Labels
Pythongood first issueGood for newcomersGood for newcomershacktoberfestcontribute to open source and win free tee! Hacktoberfest2020contribute to open source and win free tee! Hacktoberfest2020
Milestone
Description
Activity
Metadata
Metadata
Assignees
Labels
Pythongood first issueGood for newcomersGood for newcomershacktoberfestcontribute to open source and win free tee! Hacktoberfest2020contribute to open source and win free tee! Hacktoberfest2020
Algorithm/Data Structure: Merge Sort
Programming Language: Python
Difficulty: ⭐️⭐️⭐️
Issue Details
Description:
Merge Sort is a popular and efficient comparison-based sorting algorithm that divides an unsorted list into two halves, recursively sorts each half, and then merges the sorted halves back together. Your task is to implement the Merge Sort algorithm in Python. Your implementation should correctly sort a given list of elements in ascending order.
Additional Information:
If you are new to Merge Sort or need guidance on implementing it in Python, feel free to ask questions or seek help in the comments. This is a great opportunity for contributors to gain experience in sorting algorithms and algorithmic optimizations in Python.
Note:
Before starting to work on this issue, please comment below to express your interest and let us know if you have any questions or need clarification on the task.