I have a two dimensional Integer array and I need to convert it into a two dimensional String array.
private Integer[][] microboardArray = new Integer[9][9];
Then I have "get" method from interface which must be implemented.
@Override
public String[][] getBoard() {
}
Thank you for your help :).