Skip to content

Instantly share code, notes, and snippets.

@ichadhr
Forked from dochoffiday/PercentRounder.cs
Created October 23, 2019 07:24
Show Gist options
  • Save ichadhr/0b1ce2692093160f2be38d3fda285a94 to your computer and use it in GitHub Desktop.
Save ichadhr/0b1ce2692093160f2be38d3fda285a94 to your computer and use it in GitHub Desktop.
Uses the "Largest Remainder Method" to ensure rounded percentages add up to their correct total
using System;
using System.Collections.Generic;
using System.Linq;
public class PercentRounder
{
public class PercentInfo
{
public int Index;
public int Percent;
public decimal Remainder;
public PercentInfo(int index, decimal number)
{
Index = index;
Percent = (int)Math.Floor(number);
Remainder = (int)(((decimal)number % 1) * 100);
}
}
public static List<int> Compute(params decimal[] numbers)
{
var total = (int)Math.Round(numbers.Sum());
var values = numbers
.Select((p, index) => new PercentInfo(index, p))
.OrderByDescending(p => p.Remainder).ToList();
var remainder = total - values.Sum(p => p.Percent);
foreach (var value in values)
{
if (remainder == 0) break;
value.Percent++;
remainder--;
}
return values.OrderBy(p => p.Index).Select(p => p.Percent).ToList();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment