Lua
Lua copied to clipboard
counting sort in Lua
I would like to add an counting sort code in lua .Please assign me this task
please label this for hacktoberfest 2024 issue
Sure. Some notes:
- Please try to follow the contribution guidelines.
- To make this generically useful, please take an optional
keyfunction as a parameter which maps array elements to their integer key. This should default to the identity function. - Please try to implement it such that it is stable.