Ad
  • Custom User Avatar

    On Haskell there is a bug in testing code:

    In random tests, for example, having a list of monomials: ("", -1), ("b", -9), <...>
    so, the system says:
    expected: "--9b+ <...>"
    got: "-9b <...>"

    Obviously, that testing code doesn't work correct for monomial "-1", because, it reduces that to "-" (like "-1a" should be reduced to "-a")

    So, could you please, check this behaviour and fix it?

    Regards