IN JAVA I have an array like the fallowing:
int[] board={0,0,0}
If I change it to something like:
board[1,2,3]
I want to check if my current board is equal to the previous board:
if (board[0,0,0] != board[1,2,10]){
System.out.print("Its full")
}
And I want to get if it's right or wrong.