• + 0 comments

    Could I get clarification? I implemented a code and found the cost lower than the one in the example for a new matrix. For the given matrix:
    4 8 2
    4 5 7
    6 1 6
    The matrix below solves it at a lower cost (this is what my code found):
    [4, 8, 2]
    [4, 4, 6] = cost is 2
    [6, 2, 6] = cost is 1
    The magic constant is 14 and The cost is 3