I'm currently doing some programming exercises on my free time that are provided by adventofcode.com, I'm currently on day 17 there. To the problem at hand:
I have 2d map of integers ranging from [1-9] representing a cost of traveling through that slot, for example:
1234
2345
1831
The task is to find the least costly path, the problem is that there is a limitation on how you are allowed to move; you can only move straight forward 3 blocks.
I really don't want to be spoon-fed a solution to this, but, does anyone have a recommendation on path finding algorithms that finds this path in a fast way?