forked from gabrielecirulli/2048
-
Notifications
You must be signed in to change notification settings - Fork 0
My AI
Tripp Lyons edited this page Nov 11, 2015
·
8 revisions
- Down (for keeping tiles together)
- Left (for merging and keeping tiles together)
- Right (for merging)
- Up (only when needed)
+---------------------------+
|Key: 1=Largest, 16=Smallest|
+---------------------------+
16|15|14|13
--+--+--+--
9|10|11|12
--+--+--+--
8| 7| 6| 5
--+--+--+--
1| 2| 3| 4
When when the bottom-left corner is a small number, you should move down or right, respectively, until a 2 or a 4 pops up, then you can insert it, to pile on it.
When the bottom-left corner is not the biggest tile, you should make making it bigger a priority.