Skip to content

yanghoJI/EndOfDecember

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EndOfDecember


How to play

  1. requirements
pip3 install numpy==1.15.4
pip3 install opencv-python==3.4.4.19
  1. clone repo
git clone [email protected]:yanghoJI/EndOfDecember.git
  1. play the game
cd 2048
python3 game2048V1.py

Description of algorithm

  1. flow diagram




2. calculNextArray Function
if Pi == Vi:
    result_Array[Pi] = Pi + Pi
    NextPi = 0

elif Pi == 0 or Vi == 0:
    result_Array[Pi] = 0
    NextPi = Pi + Vi

else:
    result_Array[Pi] = Pi
    NextPi = Vi




2048 with Reinforcement Learning

Comming soon

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages