Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abranhe/quick-srt-cli
Quick Sort CLI
https://github.com/abranhe/quick-srt-cli
algorithm cli quicksort sorting-algorithms
Last synced: 4 days ago
JSON representation
Quick Sort CLI
- Host: GitHub
- URL: https://github.com/abranhe/quick-srt-cli
- Owner: abranhe
- License: mit
- Created: 2018-08-20T22:58:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-20T23:02:53.000Z (about 6 years ago)
- Last Synced: 2024-11-03T00:33:27.675Z (13 days ago)
- Topics: algorithm, cli, quicksort, sorting-algorithms
- Language: JavaScript
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
quick-srt-cli
: quick Sort Algorithm Implementation CLI# Install
```
npm install quick-srt-cli
```# Usage
```console
Usage:
$ quick-srtOptions
-f, --feedback Send a feedback
-h, --help Show help message and close
-v, --version View package VersionExample
$ quick-srt "d h z a r b i"
[ 'a', 'b', 'd', 'h', 'i', 'r', 'z' ]
$ quick-srt "3 2 5 25 74"
[ '2', '25', '3', '5', '74' ]
```# Try it! 😁
```
npx quick-srt-cli "d h z a r b i"
```# Related
- [quick-srt](https://github.com/abranhe/quick-srt): API for this module
- [bubble-srt](https://github.com/abranhe/bubble-srt): Bubble Sort Algorithm implementation
- [merge-srt](https://github.com/abranhe/merge-srt): Merge Sort Algorithm implementation# Team
|[![Carlos Abraham Logo](https://avatars3.githubusercontent.com/u/21347264?s=50&v=4)](https://19cah.com)|
| :-: |
| [Carlos Abraham](https://github.com/abranhe) |# License
[MIT](https://github.com/abranhe/quick-srt-cli/blob/master/LICENSE) License © [Carlos Abraham](https://github.com/abranhe/)