Skip to content

mariansam/Bogosort.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Bogosort.NET

The best sorting algorithm in C#!

Installation

The package is available on NuGet - https://www.nuget.org/packages/Bogosort.NET

Usage

The usage of this package is pretty straight-forward. Here is an example.

using System;
using System.Collections.Generic;
using Bogosort;

namespace Bogosort.Test
{
    class Program
    {
        static void Main(string[] args)
        {
            List<int> list = new List<int>() { 0, 3, 4, 7, 4, 16, 9, 147, 9, 14 };
            list.Bogosort();
            Console.WriteLine(string.Join(" ", list));
        }
    }
}

Enjoy!

About

The best sorting algorithm in C#!

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages