@cyrilverloop/codingame-configuration 1.11.0 → 1.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -1
- package/config/easy/DartsCheckoutRoutes/code/CGCode.js +7 -0
- package/config/easy/DartsCheckoutRoutes/code/CGCode.php +8 -0
- package/config/easy/DartsCheckoutRoutes/config.json +43 -0
- package/config/easy/DartsCheckoutRoutes/input/01 - Simple.txt +2 -0
- package/config/easy/DartsCheckoutRoutes/input/02 - Higher Score.txt +2 -0
- package/config/easy/DartsCheckoutRoutes/input/03 - More Darts.txt +2 -0
- package/config/easy/DartsCheckoutRoutes/input/04 - Max Score.txt +2 -0
- package/config/easy/DartsCheckoutRoutes/input/05 - No Darts.txt +2 -0
- package/config/easy/DartsCheckoutRoutes/input/06 - Unorthodox Darts.txt +2 -0
- package/config/easy/DartsCheckoutRoutes/input/07 - Unorthodox Darts 2.txt +2 -0
- package/config/easy/DartsCheckoutRoutes/output/01 - Simple.txt +1 -0
- package/config/easy/DartsCheckoutRoutes/output/02 - Higher Score.txt +1 -0
- package/config/easy/DartsCheckoutRoutes/output/03 - More Darts.txt +1 -0
- package/config/easy/DartsCheckoutRoutes/output/04 - Max Score.txt +1 -0
- package/config/easy/DartsCheckoutRoutes/output/05 - No Darts.txt +1 -0
- package/config/easy/DartsCheckoutRoutes/output/06 - Unorthodox Darts.txt +1 -0
- package/config/easy/DartsCheckoutRoutes/output/07 - Unorthodox Darts 2.txt +1 -0
- package/config/easy/ItemMaker/config.json +1 -1
- package/config/easy/NDVectorSorting/config.json +2 -2
- package/config/hard/TetrisFloor/config.json +1 -1
- package/package.json +1 -1
- /package/config/easy/NDVectorSorting/input/{05 - BiggestNumberOfVectors.txt → 05 - Biggest number of vectors.txt} +0 -0
- /package/config/easy/NDVectorSorting/output/{05 - BiggestNumberOfVectors.txt → 05 - Biggest number of vectors.txt} +0 -0
- /package/config/hard/NonogramInversor/input/{03 - test 3 - Africa → 03 - test 3 - Africa.txt} +0 -0
- /package/config/hard/NonogramInversor/output/{03 - test 3 - Africa → 03 - test 3 - Africa.txt} +0 -0
package/CHANGELOG.md
CHANGED
@@ -6,7 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
### Added
|
9
|
-
- configuration for "".
|
9
|
+
- configuration for "Darts Checkout Routes".
|
10
|
+
|
11
|
+
## [1.11.2] - 2025-01-31
|
12
|
+
### Fixed
|
13
|
+
- name of test "Let’s Legendary!" for "Item Maker".
|
14
|
+
- configuration of test "Biggest number of vectors" for "nD-Vector sorting".
|
15
|
+
- alphanumName of test "Random #2" for "Tetris Floor".
|
16
|
+
|
17
|
+
## [1.11.1] - 2025-01-31
|
18
|
+
### Fixed
|
19
|
+
- input and output files of test "Test 3 - Africa" for "Nonogram inversor".
|
10
20
|
|
11
21
|
## [1.11.0] - 2025-01-31
|
12
22
|
### Added
|
@@ -0,0 +1,43 @@
|
|
1
|
+
{
|
2
|
+
"path": "easy/DartsCheckoutRoutes",
|
3
|
+
"name": "Darts Checkout Routes",
|
4
|
+
"alphanumName": "DartsCheckoutRoutes",
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/darts-checkout-routes",
|
6
|
+
"tests": [
|
7
|
+
{
|
8
|
+
"name": "Simple",
|
9
|
+
"alphanumName": "Simple",
|
10
|
+
"file": "01 - Simple.txt"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"name": "Higher Score",
|
14
|
+
"alphanumName": "HigherScore",
|
15
|
+
"file": "02 - Higher Score.txt"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "More Darts",
|
19
|
+
"alphanumName": "MoreDarts",
|
20
|
+
"file": "03 - More Darts.txt"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": "Max Score",
|
24
|
+
"alphanumName": "MaxScore",
|
25
|
+
"file": "04 - Max Score.txt"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "No Darts",
|
29
|
+
"alphanumName": "NoDarts",
|
30
|
+
"file": "05 - No Darts.txt"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"name": "Unorthodox Darts",
|
34
|
+
"alphanumName": "UnorthodoxDarts",
|
35
|
+
"file": "06 - Unorthodox Darts.txt"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"name": "Unorthodox Darts 2",
|
39
|
+
"alphanumName": "UnorthodoxDarts2",
|
40
|
+
"file": "07 - Unorthodox Darts 2.txt"
|
41
|
+
}
|
42
|
+
]
|
43
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
3
|
@@ -0,0 +1 @@
|
|
1
|
+
12
|
@@ -0,0 +1 @@
|
|
1
|
+
1398
|
@@ -0,0 +1 @@
|
|
1
|
+
1
|
@@ -0,0 +1 @@
|
|
1
|
+
0
|
@@ -0,0 +1 @@
|
|
1
|
+
2600
|
@@ -0,0 +1 @@
|
|
1
|
+
3905
|
package/package.json
CHANGED
File without changes
|
File without changes
|
/package/config/hard/NonogramInversor/input/{03 - test 3 - Africa → 03 - test 3 - Africa.txt}
RENAMED
File without changes
|
/package/config/hard/NonogramInversor/output/{03 - test 3 - Africa → 03 - test 3 - Africa.txt}
RENAMED
File without changes
|