C# implementation of Median of Medians
see: http://en.wikipedia.org/wiki/Median_of_medians
Given a collection of unsorted numbers, find the median without sorting the entire list.
This project is intended for educational purposes. It is good for students and anyone learning C#. It is not meant to be an optimal solution or example of good coding practices.
- Built with .NET 9
- .NET 9 SDK or later
dotnet restore
dotnet build
dotnet test