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
commit 39a1e98634
6 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
package com.baeldung.algorithms.play2048; package com.baeldung.algorithms.play2048;
public class Play2048 { public class Play2048 {
private static final int SIZE = 3; private static final int SIZE = 4;
private static final int INITIAL_NUMBERS = 2; private static final int INITIAL_NUMBERS = 2;
public static void main(String[] args) { public static void main(String[] args) {