@cyrilverloop/codingame-configuration 1.11.0 → 1.11.1

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.
Files changed (21) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/config/easy/DartsCheckoutRoutes/code/CGCode.js +7 -0
  3. package/config/easy/DartsCheckoutRoutes/code/CGCode.php +8 -0
  4. package/config/easy/DartsCheckoutRoutes/config.json +43 -0
  5. package/config/easy/DartsCheckoutRoutes/input/01 - Simple.txt +2 -0
  6. package/config/easy/DartsCheckoutRoutes/input/02 - Higher Score.txt +2 -0
  7. package/config/easy/DartsCheckoutRoutes/input/03 - More Darts.txt +2 -0
  8. package/config/easy/DartsCheckoutRoutes/input/04 - Max Score.txt +2 -0
  9. package/config/easy/DartsCheckoutRoutes/input/05 - No Darts.txt +2 -0
  10. package/config/easy/DartsCheckoutRoutes/input/06 - Unorthodox Darts.txt +2 -0
  11. package/config/easy/DartsCheckoutRoutes/input/07 - Unorthodox Darts 2.txt +2 -0
  12. package/config/easy/DartsCheckoutRoutes/output/01 - Simple.txt +1 -0
  13. package/config/easy/DartsCheckoutRoutes/output/02 - Higher Score.txt +1 -0
  14. package/config/easy/DartsCheckoutRoutes/output/03 - More Darts.txt +1 -0
  15. package/config/easy/DartsCheckoutRoutes/output/04 - Max Score.txt +1 -0
  16. package/config/easy/DartsCheckoutRoutes/output/05 - No Darts.txt +1 -0
  17. package/config/easy/DartsCheckoutRoutes/output/06 - Unorthodox Darts.txt +1 -0
  18. package/config/easy/DartsCheckoutRoutes/output/07 - Unorthodox Darts 2.txt +1 -0
  19. package/package.json +1 -1
  20. /package/config/hard/NonogramInversor/input/{03 - test 3 - Africa → 03 - test 3 - Africa.txt} +0 -0
  21. /package/config/hard/NonogramInversor/output/{03 - test 3 - Africa → 03 - test 3 - Africa.txt} +0 -0
package/CHANGELOG.md CHANGED
@@ -6,7 +6,11 @@ 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.1] - 2025-01-31
12
+ ### Fixed
13
+ - input and output files of test "Test 3 - Africa" for "Nonogram inversor".
10
14
 
11
15
  ## [1.11.0] - 2025-01-31
12
16
  ### Added
@@ -0,0 +1,7 @@
1
+ const score = parseInt(readline());
2
+ const darts = parseInt(readline());
3
+
4
+ // Write an answer using console.log()
5
+ // To debug: console.error('Debug messages...');
6
+
7
+ console.log('answer');
@@ -0,0 +1,8 @@
1
+ <?php
2
+ fscanf(STDIN, "%d", $score);
3
+ fscanf(STDIN, "%d", $darts);
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("answer\n");
@@ -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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyrilverloop/codingame-configuration",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "description": "A project that contains CodinGame input, output and default code.",
5
5
  "repository": {
6
6
  "type": "git",