go run main.go --sort=<sort options>
In this programe, I have 2 options sort ("MergeSort" and "RadixSort"), you can choose between these option (default is MergeSort)
Example
go run main.go --sort=RadixSort
- Enter number of elements in array (int)
- Enter value (int)
Code by H3des