Skip to content

Instantly share code, notes, and snippets.

@MrTrick
Created December 31, 2011 15:56
Show Gist options
  • Save MrTrick/1544408 to your computer and use it in GitHub Desktop.
Save MrTrick/1544408 to your computer and use it in GitHub Desktop.
Beautiful code
public ScrabbleGame() {
super(
ScrabbleGame.parseGrid(
"T..d...T...d..T\n"+
".D...t...t...D.\n"+
"..D...d.d...D..\n"+
"d..D...d...D..d\n"+
"....D.....D....\n"+
".t...t...t...t.\n"+
"..d...d.d...d..\n"+
"T..d...D...d..T\n"+
"..d...d.d...d..\n"+
".t...t...t...t.\n"+
"....D.....D....\n"+
"d..D...d...D..d\n"+
".D...t...t...D.\n"+
"T..d...T...d..T"
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment