Description
Solutions
Find Min Num Moves
🔥 FULLTIME

You are presented with a two-dimensional grid of size N x M (N rows and M columns). Each cell in the grid is either black ("B") or white ("w").

A row or column is considered symmetric if it reads the same forwards as it does backward. For example, a row "BWWBWWB" is symmetric whereas "WBWB" isn't.

The same symmetry criterion applies to columns.

In one move, you can change the color in a single cell to the opposite.

Your task is to determine the minimum number of moves required to make every row and column in the grid symmetric.

Given an array grid consisting of N strings, all of length M (each string is a single row of the grid), returns the minimum number of moves required to make all rows and columns symmetric.

Example 1:

Input:  grid = ["BBWWB", "WWWBW", "BWWWW"]
Output: 3
Explanation:
No explanation for now

Example 2:

Input:  grid = ["BBBB", "WWWW", "BBWB", "WWWW"]
Output: 7
Explanation:
No explanation for now

Example 3:

Input:  grid = ["BWB", "WBB", "WBW"]
Output: 4
Explanation:
No explanation for now
Constraints:
    N/A
Thumbnail 0
Testcase

Result
Case 1

input:

output: