Mid/SeniorArrayGreedy

Minimum Domino Rotations For Equal Row

In a row of dominoes, tops[i] and bottoms[i] represent the top and bottom halves of the i^th domino. A domino is a tile with two numbers from 1 to 6, one on each half of the tile.

You may rotate the i^th domino so that tops[i] and bottoms[i] swap values.

Return the minimum number of rotations so that all the values in tops are the same, or all the values in bottoms are the same.

If it cannot be done, return -1.

Example 1
Inputtops = [2,1,2,4,2,2], bottoms = [5,2,6,2,3,2]
Output2
If the second and fourth dominoes are rotated, every value in the top row becomes 2.
Example 2
Inputtops = [3,5,1,2,3], bottoms = [3,6,3,3,4]
Output-1
It is not possible to rotate the dominoes to make one row of values equal.

Constraints

  • 2 <= tops.length <= 2 * 10^4
  • bottoms.length == tops.length
  • 1 <= tops[i], bottoms[i] <= 6

Asked at 4 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate