https://github.com/pythonnut/2048.jl
:1234: A 2048 solver written in Julia
https://github.com/pythonnut/2048.jl
Last synced: about 1 month ago
JSON representation
:1234: A 2048 solver written in Julia
- Host: GitHub
- URL: https://github.com/pythonnut/2048.jl
- Owner: PythonNut
- Created: 2016-05-03T04:51:30.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-02-13T09:50:19.000Z (about 5 years ago)
- Last Synced: 2025-02-07T09:32:35.057Z (3 months ago)
- Language: Julia
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
`2048.jl`
=========This is an implementation of the popular online game [2048](https://gabrielecirulli.github.io/2048/) with an accompanying solver written in [`julia`](https://github.com/JuliaLang/julia). To my knowledge, most existing solvers for 2048 are written in JavaScript. A Julia solver should be able to solve higher efficiency with equivalent performance.
Right now, the solver implements Pure Monte Carlo Tree Search, which is capable of regularly achieving a 2048 tile, but rarely beyond that. More advanced techniques are planned.
I wrote this to re-familiarize myself with Julia and its conventions. So far, it's been very pleasant. :)