@cyrilverloop/codingame-configuration 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +12 -1
- package/config/easy/CreateTurnHereSigns/config.json +1 -1
- package/config/easy/Interstellar/code/CGCode.js +12 -0
- package/config/easy/Interstellar/code/CGCode.php +13 -0
- package/config/easy/Interstellar/config.json +58 -0
- package/config/easy/Interstellar/input/01 - test 1.txt +2 -0
- package/config/easy/Interstellar/input/02 - test 2.txt +2 -0
- package/config/easy/Interstellar/input/03 - test 3.txt +2 -0
- package/config/easy/Interstellar/input/04 - test 4.txt +2 -0
- package/config/easy/Interstellar/input/05 - test 5.txt +2 -0
- package/config/easy/Interstellar/input/06 - test 6.txt +2 -0
- package/config/easy/Interstellar/input/07 - test 7.txt +2 -0
- package/config/easy/Interstellar/input/08 - test 8.txt +2 -0
- package/config/easy/Interstellar/input/09 - test 9.txt +2 -0
- package/config/easy/Interstellar/input/10 - test 10.txt +2 -0
- package/config/easy/Interstellar/output/01 - test 1.txt +2 -0
- package/config/easy/Interstellar/output/02 - test 2.txt +2 -0
- package/config/easy/Interstellar/output/03 - test 3.txt +2 -0
- package/config/easy/Interstellar/output/04 - test 4.txt +2 -0
- package/config/easy/Interstellar/output/05 - test 5.txt +2 -0
- package/config/easy/Interstellar/output/06 - test 6.txt +2 -0
- package/config/easy/Interstellar/output/07 - test 7.txt +2 -0
- package/config/easy/Interstellar/output/08 - test 8.txt +2 -0
- package/config/easy/Interstellar/output/09 - test 9.txt +2 -0
- package/config/easy/Interstellar/output/10 - test 10.txt +2 -0
- package/config/easy/KangarooWords/config.json +0 -5
- package/config/easy/NATOAlphabetsOddUncles/config.json +0 -5
- package/config/easy/ShouldBakersBeFrugal/config.json +1 -1
- package/package.json +1 -1
- package/config/easy/KangarooWords/input/08 - Pointless.txt +0 -6
- package/config/easy/KangarooWords/output/08 - Pointless.txt +0 -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
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- configuration for "Interstellar".
|
10
|
+
|
11
|
+
## [1.4.1] - 2024-07-31
|
12
|
+
### Fixed
|
13
|
+
- single quotes in puzzle name "Create ‘Turn Here’ Signs".
|
14
|
+
- double configuraton for "Kangaroo words".
|
15
|
+
- double configuraton for "NATO-alphabet’s odd uncles".
|
16
|
+
- space in alphanumName for "Should Bakers be Frugal?".
|
17
|
+
|
7
18
|
## [1.4.0] - 2024-07-31
|
8
19
|
### Added
|
9
20
|
- configuration for "Periodic table spelling".
|
@@ -47,7 +58,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
47
58
|
- configuration for "Six Degrees of Kevin Bacon".
|
48
59
|
- configuration for "Triangle Toggle".
|
49
60
|
- configuration for "Zeckendorf representation, part I".
|
50
|
-
- configuration for "Create
|
61
|
+
- configuration for "Create ‘Turn Here’ Signs".
|
51
62
|
- configuration for "Escape the madness".
|
52
63
|
- configuration for "ASCII Art The Drunken Bishop Algorithm".
|
53
64
|
- configuration for "abcdefghijklmnopqrstuvwxyz".
|
@@ -0,0 +1,12 @@
|
|
1
|
+
const ship = readline();
|
2
|
+
const wormhole = readline();
|
3
|
+
|
4
|
+
// Write an answer using console.log()
|
5
|
+
// To debug: console.error('Debug messages...');
|
6
|
+
|
7
|
+
console.log('Direction:');
|
8
|
+
|
9
|
+
// Write an answer using console.log()
|
10
|
+
// To debug: console.error('Debug messages...');
|
11
|
+
|
12
|
+
console.log('Distance:');
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?php
|
2
|
+
$ship = stream_get_line(STDIN, 20 + 1, "\n");
|
3
|
+
$wormhole = stream_get_line(STDIN, 20 + 1, "\n");
|
4
|
+
|
5
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
6
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
7
|
+
|
8
|
+
echo("Direction:\n");
|
9
|
+
|
10
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
11
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
12
|
+
|
13
|
+
echo("Distance:\n");
|
@@ -0,0 +1,58 @@
|
|
1
|
+
{
|
2
|
+
"path": "easy/Interstellar",
|
3
|
+
"name": "Interstellar",
|
4
|
+
"alphanumName": "Interstellar",
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/interstellar",
|
6
|
+
"tests": [
|
7
|
+
{
|
8
|
+
"name": "Test 1",
|
9
|
+
"alphanumName": "test1",
|
10
|
+
"file": "01 - test 1.txt"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"name": "Test 2",
|
14
|
+
"alphanumName": "test2",
|
15
|
+
"file": "02 - test 2.txt"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "Test 3",
|
19
|
+
"alphanumName": "test3",
|
20
|
+
"file": "03 - test 3.txt"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": "Test 4",
|
24
|
+
"alphanumName": "test4",
|
25
|
+
"file": "04 - test 4.txt"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "Test 5",
|
29
|
+
"alphanumName": "test5",
|
30
|
+
"file": "05 - test 5.txt"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"name": "Test 6",
|
34
|
+
"alphanumName": "test6",
|
35
|
+
"file": "06 - test 6.txt"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"name": "Test 7",
|
39
|
+
"alphanumName": "test7",
|
40
|
+
"file": "07 - test 7.txt"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"name": "Test 8",
|
44
|
+
"alphanumName": "test8",
|
45
|
+
"file": "08 - test 8.txt"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"name": "Test 9",
|
49
|
+
"alphanumName": "test9",
|
50
|
+
"file": "09 - test 9.txt"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"name": "Test 10",
|
54
|
+
"alphanumName": "test10",
|
55
|
+
"file": "10 - test 10.txt"
|
56
|
+
}
|
57
|
+
]
|
58
|
+
}
|
@@ -29,11 +29,6 @@
|
|
29
29
|
"alphanumName": "RestAreRandomTest5",
|
30
30
|
"file": "05 - Rest are random - Test 5.txt"
|
31
31
|
},
|
32
|
-
{
|
33
|
-
"name": "Rest are random - Test 5",
|
34
|
-
"alphanumName": "RestAreRandomTest5",
|
35
|
-
"file": "05 - Rest are random - Test 5.txt"
|
36
|
-
},
|
37
32
|
{
|
38
33
|
"name": "Test 6",
|
39
34
|
"alphanumName": "test6",
|
package/package.json
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
NONE
|