Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 2 2 2 2
10 10 10 1 2
20 20 20 1 2
30 30 30 30 2];
assert(isequal(minimal_path(x),14))
|
2 | Pass |
x = [2 2 2 2 2
0 0 10 1 2
20 0 20 1 2
30 0 0 3 2];
assert(isequal(minimal_path(x),7))
|
3 | Pass |
x = [100 20 30 40 50
60 70 80 90 100];
assert(isequal(minimal_path(x),340))
|
4 | Pass |
x = [11 111 23 45 67 -500 34 23
22 32 432 1234 12 1244 -544 44
1 2 3 4 5 6 7 8
-12000 45 6 7 8 433 664 2344];
assert(isequal(minimal_path(x),-8459))
|
1223 Solvers
Construct a string from letters and counts
128 Solvers
Matrix indexing with two vectors of indices
485 Solvers
246 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!