Given an m×nm \times nm×n binary matrix, matrix, return the maximum number of rows where all values become identical after flipping any number of columns. Flipping a column means changing every 000 to 111 and every 111 to 000 in that column.
matrix
Constraints:
...