Min Cost Path(Dijkstra)

07 Nov 2019

Problem

Given a square grid of size N, each cell of which contains integer cost which represents a cost to traverse through that cell, we need to find a path from top left cell to bottom right cell by which total cost incurred is minimum.

Solution

Code - here

Editorial(GeeksforGeeks) - here

Practice - GeeksforGeeks/practice

Take note