@cyrilverloop/codingame-configuration 1.5.1 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +11 -0
- package/config/easy/BlendingColors/config.json +1 -1
- package/config/easy/CrazyList/config.json +1 -1
- package/config/easy/FurlongsPerFortnight/config.json +8 -8
- package/config/easy/SavingSnoopy/config.json +1 -1
- package/config/easy/TheAlienBusinessOfCows/code/CGCode.js +9 -0
- package/config/easy/TheAlienBusinessOfCows/code/CGCode.php +11 -0
- package/config/easy/TheAlienBusinessOfCows/config.json +33 -0
- package/config/easy/TheAlienBusinessOfCows/input/01 - United Steak of America.txt +12 -0
- package/config/easy/TheAlienBusinessOfCows/input/02 - Free Tacow !.txt +9 -0
- package/config/easy/TheAlienBusinessOfCows/input/03 - Is that a Mowse.txt +5 -0
- package/config/easy/TheAlienBusinessOfCows/input/04 - Those missions are stupid.txt +5 -0
- package/config/easy/TheAlienBusinessOfCows/input/05 - Union of Steak Amateurs.txt +9 -0
- package/config/easy/TheAlienBusinessOfCows/output/01 - United Steak of America.txt +11 -0
- package/config/easy/TheAlienBusinessOfCows/output/02 - Free Tacow !.txt +8 -0
- package/config/easy/TheAlienBusinessOfCows/output/03 - Is that a Mowse.txt +4 -0
- package/config/easy/TheAlienBusinessOfCows/output/04 - Those missions are stupid.txt +4 -0
- package/config/easy/TheAlienBusinessOfCows/output/05 - Union of Steak Amateurs.txt +8 -0
- package/config/medium/LexiScrambleQuest/code/CGCode.js +6 -0
- package/config/medium/LexiScrambleQuest/code/CGCode.php +7 -0
- package/config/medium/LexiScrambleQuest/config.json +48 -0
- package/config/medium/LexiScrambleQuest/input/01 - Nursery.txt +1 -0
- package/config/medium/LexiScrambleQuest/input/02 - Just words....txt +1 -0
- package/config/medium/LexiScrambleQuest/input/03 - Small words.txt +1 -0
- package/config/medium/LexiScrambleQuest/input/04 - Medium length.txt +1 -0
- package/config/medium/LexiScrambleQuest/input/05 - Little long.txt +1 -0
- package/config/medium/LexiScrambleQuest/input/06 - mississippi.txt +1 -0
- package/config/medium/LexiScrambleQuest/input/07 - Monstrous.txt +1 -0
- package/config/medium/LexiScrambleQuest/input/08 - Beatles.txt +1 -0
- package/config/medium/LexiScrambleQuest/output/01 - Nursery.txt +1 -0
- package/config/medium/LexiScrambleQuest/output/02 - Just words....txt +1 -0
- package/config/medium/LexiScrambleQuest/output/03 - Small words.txt +1 -0
- package/config/medium/LexiScrambleQuest/output/04 - Medium length.txt +1 -0
- package/config/medium/LexiScrambleQuest/output/05 - Little long.txt +1 -0
- package/config/medium/LexiScrambleQuest/output/06 - mississippi.txt +1 -0
- package/config/medium/LexiScrambleQuest/output/07 - Monstrous.txt +1 -0
- package/config/medium/LexiScrambleQuest/output/08 - Beatles.txt +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [1.6.0] - 2024-09-02
|
8
|
+
### Added
|
9
|
+
- configuration for "The alien business of cows".
|
10
|
+
- configuration for "LexiScramble Quest".
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
- extra space in alphanumName of test "Big Canvas" for "Blending Colors".
|
14
|
+
- alphanumName of test "A short list" for "Crazy List".
|
15
|
+
- alphanumNames of tests for "Furlongs per Fortnight".
|
16
|
+
- alphanumName of test "Final Message" for "Saving Snoopy".
|
17
|
+
|
7
18
|
## [1.5.1] - 2024-08-31
|
8
19
|
### Fixed
|
9
20
|
- Package version for NPM.
|
@@ -6,42 +6,42 @@
|
|
6
6
|
"tests": [
|
7
7
|
{
|
8
8
|
"name": "DT -> dt - Test 1",
|
9
|
-
"alphanumName": "
|
9
|
+
"alphanumName": "DTdtTest1",
|
10
10
|
"file": "01 - DT dt.txt"
|
11
11
|
},
|
12
12
|
{
|
13
13
|
"name": "D -> d - Test 2",
|
14
|
-
"alphanumName": "
|
14
|
+
"alphanumName": "DdTest2",
|
15
15
|
"file": "02 - D d.txt"
|
16
16
|
},
|
17
17
|
{
|
18
18
|
"name": "Dt -> dT - Test 3",
|
19
|
-
"alphanumName": "
|
19
|
+
"alphanumName": "DtdTTest3",
|
20
20
|
"file": "03 - Dt dT.txt"
|
21
21
|
},
|
22
22
|
{
|
23
23
|
"name": "dT -> Dt - Test 4",
|
24
|
-
"alphanumName": "
|
24
|
+
"alphanumName": "dTDtTest4",
|
25
25
|
"file": "04 - dT Dt.txt"
|
26
26
|
},
|
27
27
|
{
|
28
28
|
"name": "d -> D - Test 5",
|
29
|
-
"alphanumName": "
|
29
|
+
"alphanumName": "dDTest5",
|
30
30
|
"file": "05 - d D.txt"
|
31
31
|
},
|
32
32
|
{
|
33
33
|
"name": "dt -> DT - Test 6",
|
34
|
-
"alphanumName": "
|
34
|
+
"alphanumName": "dtDTTest6",
|
35
35
|
"file": "06 - dt DT.txt"
|
36
36
|
},
|
37
37
|
{
|
38
38
|
"name": "T -> t - Test 7",
|
39
|
-
"alphanumName": "
|
39
|
+
"alphanumName": "TtTest7",
|
40
40
|
"file": "07 - T t.txt"
|
41
41
|
},
|
42
42
|
{
|
43
43
|
"name": "t -> T - Test 8",
|
44
|
-
"alphanumName": "
|
44
|
+
"alphanumName": "tTTest8",
|
45
45
|
"file": "08 - t T.txt"
|
46
46
|
},
|
47
47
|
{
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?php
|
2
|
+
fscanf(STDIN, "%d", $N);
|
3
|
+
for ($i = 0; $i < $N; $i++)
|
4
|
+
{
|
5
|
+
$upcomingMission = stream_get_line(STDIN, 256 + 1, "\n");
|
6
|
+
}
|
7
|
+
|
8
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
9
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
10
|
+
|
11
|
+
echo("answer\n");
|
@@ -0,0 +1,33 @@
|
|
1
|
+
{
|
2
|
+
"path": "easy/TheAlienBusinessOfCows",
|
3
|
+
"name": "The alien business of cows",
|
4
|
+
"alphanumName": "TheAlienBusinessOfCows",
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/the-alien-business-of-cows",
|
6
|
+
"tests": [
|
7
|
+
{
|
8
|
+
"name": "United Steak of America",
|
9
|
+
"alphanumName": "UnitedSteakOfAmerica",
|
10
|
+
"file": "01 - United Steak of America.txt"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"name": "Free Tacow !",
|
14
|
+
"alphanumName": "FreeTacow",
|
15
|
+
"file": "02 - Free Tacow !.txt"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "Is that a Mowse ?",
|
19
|
+
"alphanumName": "IsThatAMowse",
|
20
|
+
"file": "03 - Is that a Mowse.txt"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": "Those missions are stupid",
|
24
|
+
"alphanumName": "ThoseMissionsAreStupid",
|
25
|
+
"file": "04 - Those missions are stupid.txt"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "Union of Steak Amateurs",
|
29
|
+
"alphanumName": "UnionOfSteakAmateurs",
|
30
|
+
"file": "05 - Union of Steak Amateurs.txt"
|
31
|
+
}
|
32
|
+
]
|
33
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
11
|
2
|
+
Boadwine Farms Inc (South Dakota, USA) 43°44'41.7"N 96°49'37.4"W 496
|
3
|
+
George Farms (Wyoming, USA) 44°38'39.1"N 108°58'19.0"W 1467
|
4
|
+
Coronado Dairy (Arizona, USA) 32°01'35.6"N 109°45'44.3"W 1289
|
5
|
+
Peaceful Hills Farm (Missouri, USA) 39°04'39.6"N 94°11'49.5"W 282
|
6
|
+
Grotegut Dairy Farm Inc (Wisconsin, USA) 43°59'33.9"N 87°45'19.2"W 227
|
7
|
+
Crooked Creek Farm Dairy (Michigan, USA) 42°51'18.8"N 82°59'26.4"W 237
|
8
|
+
MVP Dairy, LLC (Ohio, USA) 40°37'28.0"N 84°31'41.0"W 253
|
9
|
+
The Family Cow (Pennsylvania, USA) 39°58'02.7"N 77°34'26.9"W 213
|
10
|
+
Kleinpeter Farms Dairy LLC (Louisiana, USA) 30°21'47.1"N 91°01'21.1"W 8
|
11
|
+
Working Cows Dairy (Alabama, USA) 31°11'14.2"N 85°36'06.3"W 83
|
12
|
+
Happy Cow Creamery (South Carolina, USA) 34°36'51.1"N 82°21'13.1"W 249
|
@@ -0,0 +1,9 @@
|
|
1
|
+
8
|
2
|
+
Rancho Ontiveros (Baja California, Mexico) 32°32'25.1"N 116°51'21.5"W 110
|
3
|
+
Rancho El Mezquite JR (Sonora, Mexico) 27°29'46.8"N 110°08'16.3"W 19
|
4
|
+
Rancho La Laguna (Sinaloa, Mexico) 26°14'52.7"N 108°56'30.9"W 33
|
5
|
+
Regional Livestock Union of Coahuila (Coahuila, Mexico) 28°32'27.3"N 100°29'11.7"W 268
|
6
|
+
Rancho El Sauce y la Palma (Zacatecas, Mexico) 23°00'35.2"N 102°44'57.4"W 2156
|
7
|
+
Establo Hernández Hermanos (Jalisco, Mexico) 21°00'32.2"N 102°06'48.7"W 2064
|
8
|
+
Rancho El Cuajilote (Guerrero, Mexico) 16°51'29.3"N 98°43'35.9"W 304
|
9
|
+
Rancho Guadalupe (Yucatan, Mexico) 21°13'10.8"N 88°48'23.2"W 9
|
@@ -0,0 +1,5 @@
|
|
1
|
+
4
|
2
|
+
Heart Of The Valley Farms (British Columbia, Canada) 49°45'12.8"N 125°05'19.6"W 54
|
3
|
+
Woodlands Ranching - Bred Heifers For Sale Saskatchewan (Saskatchewan, Canada) 50°41'10.0"N 104°41'24.4"W 581
|
4
|
+
Ferme Majonick (Québec, Canada) 45°55'20.8"N 73°42'44.4"W 73
|
5
|
+
Carriage Lane Livestock (New Brunswick, Canada) 45°56'51.6"N 65°53'39.0"W 53
|
@@ -0,0 +1,5 @@
|
|
1
|
+
4
|
2
|
+
Space Launch Complexe 1 of the Vandenberg Space Force Base (California, USA) 34°45'21.8"N 120°37'34.8"W 46
|
3
|
+
Mont St Helens (Washington, USA) 46°11'28.9"N 122°11'43.9"W 2529
|
4
|
+
Area 51 (Nevada, USA) 37°15'02.5"N 115°48'31.7"W 1364
|
5
|
+
White House (USA) 38°53'51.6"N 77°02'11.5"W 18
|
@@ -0,0 +1,9 @@
|
|
1
|
+
8
|
2
|
+
El Oro Cattle Feeders (Washington, USA) 47°03'11.8"N 119°05'23.4"W 346
|
3
|
+
Schoch Dairy & Creamery (Oregon, USA) 45°34'49.2"N 122°55'34.8"W 66
|
4
|
+
Utah Natural Meat And Milk (Utah, USA) 40°36'59.3"N 112°01'26.1"W 1460
|
5
|
+
De Smet Dairy and Creamery (New Mexico, USA) 34°50'20.1"N 106°42'22.3"W 1482
|
6
|
+
Alderspring Ranch Grassfed Organic Beef (Idaho, USA) 44°36'27.0"N 113°58'36.6"W 1490
|
7
|
+
Cow Creek Farm (Florida, USA) 28°06'25.4"N 82°13'34.9"W 20
|
8
|
+
Freedom Hill Farm (New York, USA) 46°55'17.1"N 117°39'56.8"W 525
|
9
|
+
Swan Bros. Dairy (Oklahoma, USA) 36°18'32.8"N 95°35'46.6"W 198
|
@@ -0,0 +1,11 @@
|
|
1
|
+
Boadwine Farms Inc (South Dakota, USA): possible. Send a L4nd MoWer to bring back 8 cows.
|
2
|
+
George Farms (Wyoming, USA): possible. Send a VaCoWM Cleaner to bring back 3 cows.
|
3
|
+
Coronado Dairy (Arizona, USA): possible. Send a VaCoWM Cleaner to bring back 2 cows.
|
4
|
+
Peaceful Hills Farm (Missouri, USA): possible. Send a L4nd MoWer to bring back 9 cows.
|
5
|
+
Grotegut Dairy Farm Inc (Wisconsin, USA): possible. Send a Cow Harvester to bring back 14 cows.
|
6
|
+
Crooked Creek Farm Dairy (Michigan, USA): possible. Send a Cow Harvester to bring back 16 cows.
|
7
|
+
MVP Dairy, LLC (Ohio, USA): possible. Send a Cow Harvester to bring back 15 cows.
|
8
|
+
The Family Cow (Pennsylvania, USA): possible. Send a Cow Harvester to bring back 18 cows.
|
9
|
+
Kleinpeter Farms Dairy LLC (Louisiana, USA): possible. Send a L4nd MoWer to bring back 10 cows.
|
10
|
+
Working Cows Dairy (Alabama, USA): possible. Send a Cow Harvester to bring back 15 cows.
|
11
|
+
Happy Cow Creamery (South Carolina, USA): possible. Send a Cow Harvester to bring back 16 cows.
|
@@ -0,0 +1,8 @@
|
|
1
|
+
Rancho Ontiveros (Baja California, Mexico): possible. Send a VaCoWM Cleaner to bring back 1 cow.
|
2
|
+
Rancho El Mezquite JR (Sonora, Mexico): possible. Send a VaCoWM Cleaner to bring back 3 cows.
|
3
|
+
Rancho La Laguna (Sinaloa, Mexico): possible. Send a VaCoWM Cleaner to bring back 3 cows.
|
4
|
+
Regional Livestock Union of Coahuila (Coahuila, Mexico): possible. Send a L4nd MoWer to bring back 7 cows.
|
5
|
+
Rancho El Sauce y la Palma (Zacatecas, Mexico): possible. Send a L4nd MoWer to bring back 8 cows.
|
6
|
+
Establo Hernández Hermanos (Jalisco, Mexico): possible. Send a L4nd MoWer to bring back 9 cows.
|
7
|
+
Rancho El Cuajilote (Guerrero, Mexico): possible. Send a Cow Harvester to bring back 14 cows.
|
8
|
+
Rancho Guadalupe (Yucatan, Mexico): possible. Send a Cow Harvester to bring back 16 cows.
|
@@ -0,0 +1,4 @@
|
|
1
|
+
Heart Of The Valley Farms (British Columbia, Canada): possible. Send a L4nd MoWer to bring back 6 cows.
|
2
|
+
Woodlands Ranching - Bred Heifers For Sale Saskatchewan (Saskatchewan, Canada): possible. Send a L4nd MoWer to bring back 8 cows.
|
3
|
+
Ferme Majonick (Québec, Canada): possible. Send a Cow Harvester to bring back 20 cows.
|
4
|
+
Carriage Lane Livestock (New Brunswick, Canada): possible. Send a Cow Harvester to bring back 20 cows.
|
@@ -0,0 +1,4 @@
|
|
1
|
+
Space Launch Complexe 1 of the Vandenberg Space Force Base (California, USA): impossible.
|
2
|
+
Mont St Helens (Washington, USA): possible. Send a VaCoWM Cleaner to bring back 3 cows.
|
3
|
+
Area 51 (Nevada, USA): possible. Send a VaCoWM Cleaner to bring back 1 cow.
|
4
|
+
White House (USA): possible. Send a Cow Harvester to bring back 18 cows.
|
@@ -0,0 +1,8 @@
|
|
1
|
+
El Oro Cattle Feeders (Washington, USA): possible. Send a VaCoWM Cleaner to bring back 3 cows.
|
2
|
+
Schoch Dairy & Creamery (Oregon, USA): possible. Send a VaCoWM Cleaner to bring back 3 cows.
|
3
|
+
Utah Natural Meat And Milk (Utah, USA): possible. Send a VaCoWM Cleaner to bring back 2 cows.
|
4
|
+
De Smet Dairy and Creamery (New Mexico, USA): possible. Send a VaCoWM Cleaner to bring back 3 cows.
|
5
|
+
Alderspring Ranch Grassfed Organic Beef (Idaho, USA): possible. Send a VaCoWM Cleaner to bring back 3 cows.
|
6
|
+
Cow Creek Farm (Florida, USA): possible. Send a Cow Harvester to bring back 17 cows.
|
7
|
+
Freedom Hill Farm (New York, USA): possible. Send a VaCoWM Cleaner to bring back 3 cows.
|
8
|
+
Swan Bros. Dairy (Oklahoma, USA): possible. Send a L4nd MoWer to bring back 8 cows.
|
@@ -0,0 +1,48 @@
|
|
1
|
+
{
|
2
|
+
"path": "medium/LexiScrambleQuest",
|
3
|
+
"name": "LexiScramble Quest",
|
4
|
+
"alphanumName": "LexiScrambleQuest",
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/lexiscramble-quest",
|
6
|
+
"tests": [
|
7
|
+
{
|
8
|
+
"name": "Nursery",
|
9
|
+
"alphanumName": "Nursery",
|
10
|
+
"file": "01 - Nursery.txt"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"name": "Just words...",
|
14
|
+
"alphanumName": "JustWords",
|
15
|
+
"file": "02 - Just words....txt"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "Small words",
|
19
|
+
"alphanumName": "SmallWords",
|
20
|
+
"file": "03 - Small words.txt"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": "Medium length",
|
24
|
+
"alphanumName": "MediumLength",
|
25
|
+
"file": "04 - Medium length.txt"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "Little long",
|
29
|
+
"alphanumName": "LittleLong",
|
30
|
+
"file": "05 - Little long.txt"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"name": "mississippi",
|
34
|
+
"alphanumName": "mississippi",
|
35
|
+
"file": "06 - mississippi.txt"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"name": "Monstrous",
|
39
|
+
"alphanumName": "Monstrous",
|
40
|
+
"file": "07 - Monstrous.txt"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"name": "Beatles",
|
44
|
+
"alphanumName": "Beatles",
|
45
|
+
"file": "08 - Beatles.txt"
|
46
|
+
}
|
47
|
+
]
|
48
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
abcd
|
@@ -0,0 +1 @@
|
|
1
|
+
success
|
@@ -0,0 +1 @@
|
|
1
|
+
mail
|
@@ -0,0 +1 @@
|
|
1
|
+
president
|
@@ -0,0 +1 @@
|
|
1
|
+
porcupine
|
@@ -0,0 +1 @@
|
|
1
|
+
mississippi
|
@@ -0,0 +1 @@
|
|
1
|
+
incomprehensibilities
|
@@ -0,0 +1 @@
|
|
1
|
+
tarararaboomdiay
|
@@ -0,0 +1 @@
|
|
1
|
+
1
|
@@ -0,0 +1 @@
|
|
1
|
+
331
|
@@ -0,0 +1 @@
|
|
1
|
+
19
|
@@ -0,0 +1 @@
|
|
1
|
+
114289
|
@@ -0,0 +1 @@
|
|
1
|
+
124678
|
@@ -0,0 +1 @@
|
|
1
|
+
13737
|
@@ -0,0 +1 @@
|
|
1
|
+
7640649348286413
|
@@ -0,0 +1 @@
|
|
1
|
+
12945415881
|