mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
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:
parent
a0b0f414ae
commit
a12e6941a6
|
@ -1,11 +1,7 @@
|
|||
"""
|
||||
This is a pure Python implementation of the quick sort algorithm
|
||||
For doctests run following command:
|
||||
python -m doctest -v radix_sort.py
|
||||
or
|
||||
python3 -m doctest -v radix_sort.py
|
||||
For manual testing run:
|
||||
python radix_sort.py
|
||||
This is a pure Python implementation of the radix sort algorithm
|
||||
|
||||
Source: https://en.wikipedia.org/wiki/Radix_sort
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user