getByCoords method
Implementation
MatrixCell? getByCoords(int x, int y) {
if (x >= this.width() || y >= this.height()) {
return null;
}
return this.s[y][x];
}
MatrixCell? getByCoords(int x, int y) {
if (x >= this.width() || y >= this.height()) {
return null;
}
return this.s[y][x];
}