Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abranhe/merge-srt-cli
Merge Sort Algorithm Implementation CLI
https://github.com/abranhe/merge-srt-cli
algorithm merge-sort sort sorting-algorithms
Last synced: 4 days ago
JSON representation
Merge Sort Algorithm Implementation CLI
- Host: GitHub
- URL: https://github.com/abranhe/merge-srt-cli
- Owner: abranhe
- License: mit
- Created: 2018-08-19T20:14:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-19T20:14:22.000Z (about 6 years ago)
- Last Synced: 2024-10-16T09:22:19.057Z (about 1 month ago)
- Topics: algorithm, merge-sort, sort, sorting-algorithms
- Language: JavaScript
- Homepage: https://npm.im/merge-srt-cli
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
merge-srt-cli
: Merge Sort Algorithm Implementation CLI# Install
```
npm install merge-srt-cli
```# Usage
```console
Usage:
$ merge-srtOptions
-f, --feedback Send a feedback
-h, --help Show help message and close
-v, --version View package VersionExample
$ merge-s "d h z a r b i"
[ 'a', 'b', 'd', 'h', 'i', 'r', 'z' ]
$ merge-s "3 2 5 25 74"
[ '2', '25', '3', '5', '74' ]
```# Try it! 😁
```
npx merge-srt-cli "d h z a r b i"
```# Related
- [merge-srt](https://github.com/abranhe/merge-srt): API for this module
- [bubble-srt](https://github.com/abranhe/bubble-srt): Bubble 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/merge-srt-cli/blob/master/LICENSE) License © [Carlos Abraham](https://github.com/abranhe/)