Skip to content

Instantly share code, notes, and snippets.

@thenickreynolds
Created August 17, 2015 02:19
Show Gist options
  • Save thenickreynolds/b199471d9ff200fa8199 to your computer and use it in GitHub Desktop.
Save thenickreynolds/b199471d9ff200fa8199 to your computer and use it in GitHub Desktop.
var BoggleBoard = function(letters, width, height) {
if (letters.length != width * height) throw 'incorrect board length';
this.width = width;
this.height = height;
this.letters = letters;
}
BoggleBoard.prototype.at = function(x, y) {
return this.letters.charAt(y * this.width + x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment