Question: Write me a code in the java langauge with the only instance variable being: 'private char [ ] [ ] grid; ' above the top
Write me a code in the java langauge with the only instance variable being:
'private char grid;
above the top row.
public boolean removeLine theLine
Returns false if theLine is not a valid line, ie if the line's start or end points are
not within the grid. For example, if grid has rows and columns, theLine starts
at row column and it ends at row column then method remove must
return false as part of theLine is not within the array grid. Recall that in a two
dimensional array the first row has index and the first column also has index
If theLine is valid, this method replaces with EMPTY the entries in grid
corresponding to theLine. And then it returns true. For example, if grid has rows
and columns and theLine starts at row column and it ends at row
column then the entries of grid in row columns and are replaced with
EMPTY and the method returns true.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
