mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-21 05:07:35 +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
|
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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user