Construct a maze using a String array. @param m the array of strings denoting the array. Walls are shown using an X, navigable positions are shown using a space, the start is 'S', and the finish is 'F'. The array must be a rectangle - ragged arrays will not work. The array must also be larger than zero.