Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

public int [ ] [ ] minimax ( ( char player ) { ) { int [ ] [ ] bestMove = = new int

public int[][] minimax((char player){){
int[][] bestMove == new int[]{1,1}[]{-1,-1};
int bestScore == Integer.MIN__VALUE; //// Or Zero.no problem.
for ((int i =0=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]=[0]= cell.row;
bestMove[1]=[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... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Java How To Program Late Objects Version

Authors: Paul Deitel, Deitel & Associates

8th Edition

0136123716, 9780136123712

More Books

Students also viewed these Programming questions