• How come that the fifth test is ...

Question related to mission Find Sequence

 

How come that the fifth test is False when the diagonal with start in first column second row [2,6,2,2,6,2] contains four "2"?

assert checkio([
    [1,  1, 1,  6, 1, 1, 1],
    [2,  5, 4,  2, 2, 7, 2],
    [2,  6, 1,  2, 6, 4, 3],
    [3,  2, 2,  1, 0, 2, 4],
    [7,  9, 6,  2, 5, 7, 5],
    [7,  3, 10, 5, 6, 2, 5],
    [7,  3, 10, 5, 6, 2, 5]
]) == False, "Fifth"
9