Hi folks
I'm trying to do my assignment in c++, I suppose to develope a maze traversal using backtracking algorithm. I have to write a constructor for my Maze with this sign.
Maze(**c, int size);
which takes a n-by-n two-dimensional character array.
Can you guide how can pass an array to this constructor? and how can I use it in the function?
Cheers
Ethan