Choose the best fitting dominoes - MATLAB Cody - MATLAB Central

Problem 520. Choose the best fitting dominoes

Difficulty:Rate
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.43% Correct | 70.57% Incorrect
Last Solution submitted on Mar 02, 2025

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers207

Suggested Problems

More from this Author51

Problem Tags

Community Treasure Hunt

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

Start Hunting!
Go to top of page