Merge pull request #9540 from sazzer/master

Moved the 2048 game into algorithms-miscellaneous-6
This commit is contained in:
Loredana Crusoveanu
2020-07-02 11:02:44 +03:00
committed by GitHub
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) {