Problem 45428. Minimal Path - 01

Given a matrix, find the minimal path sum from the top left to the bottom right by only moving to the right and down.

For example,

 x=[ 2     2     2     2     2
    10    10    10     1     2
    20    20    20     1     2
    30    30    30    30     2]

Here, the minimum path sum is 14 [ 2+2+2+2+1+1+2+2 ]

Solution Stats

37.14% Correct | 62.86% Incorrect
Last Solution submitted on Mar 21, 2024

Solution Comments

Show comments

Problem Recent Solvers12

Suggested Problems

More from this Author165

Problem Tags

Community Treasure Hunt

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

Start Hunting!