Fix docstring (#6461)

* fixed wrong algo name to radix sort

* added wiki url

* Added "source" in docstring

* Update radix_sort.py

Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
Debjit Bhowal 2022-10-01 17:47:15 +05:30 committed by GitHub
parent a0b0f414ae
commit a12e6941a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,7 @@
""" """
This is a pure Python implementation of the quick sort algorithm This is a pure Python implementation of the radix sort algorithm
For doctests run following command:
python -m doctest -v radix_sort.py Source: https://en.wikipedia.org/wiki/Radix_sort
or
python3 -m doctest -v radix_sort.py
For manual testing run:
python radix_sort.py
""" """
from __future__ import annotations from __future__ import annotations