mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
39 lines
377 B
JSON
39 lines
377 B
JSON
{
|
|
"operations": {
|
|
"easy": [
|
|
"+",
|
|
"-"
|
|
],
|
|
"medium": [
|
|
"+",
|
|
"-"
|
|
],
|
|
"hard": [
|
|
"-",
|
|
"*"
|
|
],
|
|
"extreme": [
|
|
"*",
|
|
"/"
|
|
],
|
|
"impossible": [
|
|
"/",
|
|
"^"
|
|
]
|
|
},
|
|
"difficulties": [
|
|
"easy",
|
|
"medium",
|
|
"hard",
|
|
"extreme",
|
|
"impossible"
|
|
],
|
|
"maxValues": {
|
|
"easy": 5,
|
|
"medium": 10,
|
|
"hard": 50,
|
|
"extreme": 75,
|
|
"impossible": 100
|
|
}
|
|
}
|