Ad
  • Custom User Avatar

    I ran into a problem here too. My problem was that I was rounding before summing, e.g. 4/1 + -3/2 + -2/3 = 4 - 2 - 1 = 1
    Instead, though, you should round after summing, e.g. 4/1 + -3/2 + -2/3 = 4 - 1.5 - .66 = 1.84 => 2

  • Custom User Avatar

    Hey, I don't understand why this test should return 2, can you explain me please?
    Test.assert_equals(add(4,-3,-2),2)