Minimal Path Sum

Find the minimal path sum from the top left to the bottom right of a 2D grid by only moving right or down.

Medium1/4/2024

Problem statement

Given a 2D square grid of positive integers, write a function to find the minimal sum of a path from the top left corner to the bottom right corner. You can only move to the right or down. Input will be a 2D array of integers, and output should be the minimal sum.

For instance, given the following grid:

[
  [1, 3, 4],
  [1, 5, 2],
  [4, 4, 1],
]

The minimal path sum is 10 (1 -> 1 -> 5 -> 2 -> 1).

Problem leaderboard

#
Size
%
Users
#1
53 c.
Top 8%
lydxn
#2
82 c.
Top 17%
oskar
#3
86 c.
Top 33%
voytxt
Shanethegamer
#4
114 c.
Top 42%
Thomasdcrt
#5
115 c.
Top 50%
AlephSquirrel
#6
131 c.
Top 58%
mathis
#7
132 c.
Top 67%
scpchicken
#8
175 c.
Top 75%
ComputerKWasTaken
#9
209 c.
Top 83%
val
#10
252 c.
Top 92%
maximec-indy
#11
276 c.
Top 100%
CorentinTh