1. No tienes un método FindHiddenWords, tienes una clase llamada FindHiddenWords.
2. matrixWidth y matrixHeight los estas declarando dentro del constructor, cuando deberías declararlos fuera del constructor.
Código Java:
Ver originalpublic class FindHiddenWords {
public static final char UNKNOWN = '?'; int matrixWidth;
int matrixHeight;
public FindHiddenWords(int targetWidth, int targetHeight,
matrixWidth = targetWidth;
matrixHeight = targetHeight;
}
void initializeMatrix() {
char [][] matrix;
if (matrixWidth == 0 || matrixHeight == 0){
}
else {
matrix = new char[matrixWidth][matrixHeight];
for (int i=1; i<matrixHeight){
for (int j=1; i< matrixWidth){
j++;}
}
i++;
}
}