Created
December 31, 2011 15:56
-
-
Save MrTrick/1544408 to your computer and use it in GitHub Desktop.
Beautiful code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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