Repository

QuickSort algorithm in V

Instalation

    v install MrTowers.quicksort

Usage

    import mrtowers.quicksort as qs

    fn main() {
        mut arr x := [5, 6, 2, 8]
        qs.in_place(mut x)
        println(x) // [2, 5, 6, 8]
    }

Contribution

To contribute just use v fmt -w . before PR

About

quicksort library for V

0
4
last Jun 26

Author

MrTowers