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 an important position contains is a small number, you should move down, left, or right, respectively, until a 2 or a 4 pops up, then you can insert it, to pile on it. This shouldn't be done in the most important position if the biggest number is greater than 512.
When the bottom-left corner is not the biggest tile, you should make making it bigger a priority.