menu
search
Projects
Tutorials
Challenges
Blog
Nov 8, 2019
Unique Path III in JavaScript
On a 2-dimensional grid, there are 4 types of squares. Return the number of 4-directional walks from the starting square to the ending square, that walk over every non-obstacle square exactly once.
#JavaScript
#Backtracking
#Depth First Search
#Coding Challenge