Ad
  • Default User Avatar

    comparison = " = " | " > " | " < " | " <= " | " >= " | " <> " ;
    but in random tests for the comparison mask there are maybe no spaces

  • Default User Avatar

    Note says - from top to bottom and from left to right
    in cake: [.o....o.\n.o....o.\n........\no..oo..o\n]
    expected: [".o..\n","..o.\n",".o..\n","..o.\n","..\no.\n","..\n.o\n","..\no.\n","..\n.o\n"]
    but got: [".o..\n",".o..\n","..\no.\n","..\n.o\n","..o.\n","..o.\n","..\no.\n","..\n.o\n"]
    but the rule - from left to right and from top to bottom

  • Default User Avatar

    Example Tests: Completed in 0.0054 seconds

    Example Tests: +
    [2147483647,2147483647,2147483647,2147483647]
    [625703,43898,614961,448629]
    Completed in 0.0062 seconds

    but ATTEMPT throws me a 12000ms timeout error!

    language Haskell GHC 7.10.3

    I redid the solution, on basic tests it is 10 times slower, but the ATTEMPT passed.
    Maybe there is a check with an INFINITE list.

  • Default User Avatar

    This is hard to believe but in Python the initial list CANNOT be changed, it will be used when passing to the testing function.