Problem 520. Choose the best fitting dominoes

You will be given a cell array of nx2 matrices. Choose one row from each matrix. These are the ordered pairs that will be placed in a line like this.
{[1 2 [4 5 [0 4
3 5 2 4 3 2
1 5] 5 1] 5 3]}
Choices might be: [1 2 3]
yields: [1 2][2 4][5 3]
or: abs(2-2) + abs(4-5)
or: 0 + 1
or: 1
You are trying to minimize the score, the absolute difference of the sum of the difference at the intersections.

Solution Stats

29.59% Correct | 70.41% Incorrect
Last Solution submitted on Jan 05, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers206

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!