Finding all possible paths
问题 I have a problem to find all possible paths. a a a b b a a a a b b a Traveling from starting point at 0,0 to end point at 2,3. I need to get all possible paths. Possible moves that I can do are moving down and moving right . Let me tell you where I am stuck. I am trying to do with a recursive function . Starting with point at 0,0 and moving towards right whenever I can and moving down only when I must. My recursive function : public static move(int i,int j) { if(possible(x,y+1)) { move(x,y+1)