Skip to content

Commit a12e694

Browse files
debjit-bwcclauss
andauthored
Fix docstring (TheAlgorithms#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>
1 parent a0b0f41 commit a12e694

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

sorts/radix_sort.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
"""
2-
This is a pure Python implementation of the quick sort algorithm
3-
For doctests run following command:
4-
python -m doctest -v radix_sort.py
5-
or
6-
python3 -m doctest -v radix_sort.py
7-
For manual testing run:
8-
python radix_sort.py
2+
This is a pure Python implementation of the radix sort algorithm
3+
4+
Source: https://en.wikipedia.org/wiki/Radix_sort
95
"""
106
from __future__ import annotations
117

0 commit comments

Comments
 (0)