Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Halve output goo after summing instead of summing the halves
# What We were summing up halves of the inputs which meant we lost all fractional parts due to working with integers so `(5/2) + (5/2) = 4`. By summing and then halving we get the expected output `(5 + 5) / 2 = 5`
- Loading branch information