Answered step by step
Verified Expert Solution
Question
1 Approved Answer
public int [ ] [ ] minimax ( ( char player ) { ) { int [ ] [ ] bestMove = = new int
public int[] minimax(char player){
int[] bestMove = new int[]{−1,−1};
int bestScore = Integer.MIN_VALUE; // Or Zero.no problem.
for (int i =0; i < emptyCells().size(); i++){
Cell cell = emptyCells().get(i);
cell.value = player;
int score = findMinOrMaxScore(false);
cell.value = ' ' " id="MathJax-Element-24-Frame" role="presentation" style="font-size: 121%; position: relative;" tabindex="0">='';
if ((player = = ' " id="MathJax-Element-26-Frame" role="presentation" style="font-size: 121%; position: relative;" tabindex="0">=='O' " id="MathJax-Element-27-Frame" role="presentation" style="font-size: 121%; position: relative;" tabindex="0">' && score > bestScore)||(player = = ' " id="MathJax-Element-30-Frame" role="presentation" style="font-size: 121%; position: relative;" tabindex="0">=='X' " id="MathJax-Element-31-Frame" role="presentation" style="font-size: 121%; position: relative;" tabindex="0">' && score < bestScore)){
bestScore = score;
bestMove[0]= cell.row;
bestMove[1]= cell.column;
}
} Whats the wrong in this code ?
Step by Step Solution
There are 3 Steps involved in it
Step: 1
First of all your code has some syntax errors that prevent it from compiling Here are some of them You have extra parentheses in your method signature and in some of your expressions For example you s...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started