This is just a puzzle for your amusement; I don't really need help with it.
What are the best implementations for these methods in Java?
public int average(int[] values) {}
public long average(long[] values) {}
public long average(Iterable<Long> values) {}
Values should, of course, round down.
The critera for "best" for this puzzle (and, I think, any programming puzzle) are, in this order:
- Completeness
- Correctness
- Performance
If multiple solutions have both of those going for them, then vote by niftiness!
Enjoy!
