Ad
  • Default User Avatar

    this is a prime example of why floating-point numbers should never be used to represent monetary amounts. the problem is that the reference solution does 111.0 // 3.7 to calculate the total number of beers, which yields 29.0, not 30; floor(111.0 / 3.7) would yield 30.

  • Default User Avatar

    Before sorting an array be sure it can be sorted.