New and easy quicksort Algo
Describe your change:
Hello, I am new to open source..have added a new and easy quick sort algorithm
- [x] Add an algorithm?
- [ ] Fix a bug or typo in an existing algorithm?
- [ ] Add or change doctests? -- Note: Please avoid changing both code and tests in a single pull request.
- [ ] Documentation change?
Checklist:
- [ ] I have read CONTRIBUTING.md.
- [x] This pull request is all my own work -- I have not plagiarized.
- [x] I know that pull requests will not be merged if they fail the automated tests.
- [x] This PR only changes one algorithm file. To ease review, please open separate PRs for separate algorithms.
- [x] All new Python files are placed inside an existing directory.
- [x] All filenames are in all lowercase characters with no spaces or dashes.
- [ ] All functions and variable names follow Python naming conventions.
- [ ] All function parameters and return values are annotated with Python type hints.
- [ ] All functions have doctests that pass the automated testing.
- [ ] All new algorithms include at least one URL that points to Wikipedia or another similar explanation.
- [ ] If this pull request resolves one or more open issues then the description above includes the issue number(s) with a closing keyword: "Fixes #ISSUE-NUMBER".
Try Running
pre commit's
Hey! new to this and to be frank dont know what u talking about
As already stated, please read CONTRIBUTING.md before you contribute. This was made clear in your own PR description and in the repo's README.
In addition, please make sure that the algorithm that you're contributing isn't already in the repo. We already have multiple implementations of quick sort: https://github.com/search?q=repo%3ATheAlgorithms%2FPython%20quick_sort&type=code
Your implementation seems to be an implementation of 3-way quick sort, which we already have here.