Update app.py
Browse files
app.py
CHANGED
|
@@ -28,7 +28,10 @@ Multiplayer over the network (real-time matchmaking) is not implemented here. I
|
|
| 28 |
|
| 29 |
Author: ChatGPT — example implementation for Hugging Face Spaces """
|
| 30 |
|
| 31 |
-
import gradio as gr
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
BOARD_SIZE = 8
|
| 34 |
|
|
|
|
| 28 |
|
| 29 |
Author: ChatGPT — example implementation for Hugging Face Spaces """
|
| 30 |
|
| 31 |
+
import gradio as gr
|
| 32 |
+
import copy
|
| 33 |
+
import json
|
| 34 |
+
import math
|
| 35 |
|
| 36 |
BOARD_SIZE = 8
|
| 37 |
|