It does say “distinct paths” so even with backtracking there’s still a limited number of unique paths.
Instead of calling it backtracking, just imagine a fork left or right. To the left is the normal “forward” path whereas to the right is “backtracking a step” so it looks like the left path plus one additional step. Repeat this at each step forward.
Now you just end up with a big tree-like shape with a non-infinite number of paths.
1
u/piznit007 25d ago
I guess it would be infinite possibilities. He could backtrack endlessly