#MATHSTODON
can anyone help me with this?
let's say you have a rational number n
what's the best way of computing the shortest list of integers whose mean average is n?
the result could be represented as a list (where some numbers are stated multiple times) e.g:
n = 4.75
avg([7, 7, 4, 1]) = 4.75
or as a set of tuples where the second value is the number of times that number occurs, e.g:
n = 4.75
[ {7, 2}, {4, 1}, {1, 1} ]