Moved the 2048 game into algorithms-miscellaneous-6

This commit is contained in:
Graham Cox
2020-06-21 10:10:24 +01:00
parent 118786c62a
commit c4ca7c2989
6 changed files with 1 additions and 1 deletions
@@ -1,7 +1,7 @@
package com.baeldung.algorithms.play2048;
public class Play2048 {
private static final int SIZE = 3;
private static final int SIZE = 4;
private static final int INITIAL_NUMBERS = 2;
public static void main(String[] args) {