/// <summary> /// Make solution string /// </summary> /// <returns></returns> public string MakeSolution() { string solution; Puzzle newPuzzle = puzzle.Clone(); solution = newPuzzle.SolvePuzzle(); return(solution); }