Mean Means

I am for whatever reasons computing some averages.  Should be simple enough, right?  The average of 4 and 6 is (4 + 6) / 2 = 5, right?  Yes, but no.  TD;DR: computers are dumb! Any sensible person would implement the computation in a C/Java style language like this: [java] int avg1(final int a, final […]

Read More… from Mean Means