@cyrilverloop/codingame-configuration 1.18.0 → 1.19.0

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 (153) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.cpp +17 -0
  3. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.java +16 -0
  4. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.js +6 -0
  5. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.php +7 -0
  6. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.ts +6 -0
  7. package/config/hard/BeautifulBaseIsABeautifulSum/config.json +33 -0
  8. package/config/hard/BeautifulBaseIsABeautifulSum/input/01 - test 1.txt +1 -0
  9. package/config/hard/BeautifulBaseIsABeautifulSum/input/02 - test 2.txt +1 -0
  10. package/config/hard/BeautifulBaseIsABeautifulSum/input/03 - test 3.txt +1 -0
  11. package/config/hard/BeautifulBaseIsABeautifulSum/input/04 - test 4.txt +1 -0
  12. package/config/hard/BeautifulBaseIsABeautifulSum/input/05 - test 5.txt +1 -0
  13. package/config/hard/BeautifulBaseIsABeautifulSum/output/01 - test 1.txt +1 -0
  14. package/config/hard/BeautifulBaseIsABeautifulSum/output/02 - test 2.txt +1 -0
  15. package/config/hard/BeautifulBaseIsABeautifulSum/output/03 - test 3.txt +1 -0
  16. package/config/hard/BeautifulBaseIsABeautifulSum/output/04 - test 4.txt +1 -0
  17. package/config/hard/BeautifulBaseIsABeautifulSum/output/05 - test 5.txt +1 -0
  18. package/config/hard/UnfloodTheWorld/code/CGCode.cpp +24 -0
  19. package/config/hard/UnfloodTheWorld/code/CGCode.java +22 -0
  20. package/config/hard/UnfloodTheWorld/code/CGCode.js +14 -0
  21. package/config/hard/UnfloodTheWorld/code/CGCode.php +15 -0
  22. package/config/hard/UnfloodTheWorld/code/CGCode.ts +14 -0
  23. package/config/hard/UnfloodTheWorld/config.json +48 -0
  24. package/config/hard/UnfloodTheWorld/input/01 - One drain.txt +5 -0
  25. package/config/hard/UnfloodTheWorld/input/02 - Hill.txt +6 -0
  26. package/config/hard/UnfloodTheWorld/input/03 - Wall.txt +4 -0
  27. package/config/hard/UnfloodTheWorld/input/04 - Flat field.txt +4 -0
  28. package/config/hard/UnfloodTheWorld/input/05 - Chess board.txt +6 -0
  29. package/config/hard/UnfloodTheWorld/input/06 - Fractal.txt +10 -0
  30. package/config/hard/UnfloodTheWorld/input/07 - Maze.txt +10 -0
  31. package/config/hard/UnfloodTheWorld/input/08 - Plateaus.txt +7 -0
  32. package/config/hard/UnfloodTheWorld/output/01 - One drain.txt +1 -0
  33. package/config/hard/UnfloodTheWorld/output/02 - Hill.txt +1 -0
  34. package/config/hard/UnfloodTheWorld/output/03 - Wall.txt +1 -0
  35. package/config/hard/UnfloodTheWorld/output/04 - Flat field.txt +1 -0
  36. package/config/hard/UnfloodTheWorld/output/05 - Chess board.txt +1 -0
  37. package/config/hard/UnfloodTheWorld/output/06 - Fractal.txt +1 -0
  38. package/config/hard/UnfloodTheWorld/output/07 - Maze.txt +1 -0
  39. package/config/hard/UnfloodTheWorld/output/08 - Plateaus.txt +1 -0
  40. package/config/{hard → medium}/Hangman/config.json +1 -1
  41. package/config/medium/HillNotationAndHillOrder/code/CGCode.cpp +26 -0
  42. package/config/medium/HillNotationAndHillOrder/code/CGCode.java +26 -0
  43. package/config/medium/HillNotationAndHillOrder/code/CGCode.js +9 -0
  44. package/config/medium/HillNotationAndHillOrder/code/CGCode.php +11 -0
  45. package/config/medium/HillNotationAndHillOrder/code/CGCode.ts +9 -0
  46. package/config/medium/HillNotationAndHillOrder/config.json +33 -0
  47. package/config/medium/HillNotationAndHillOrder/input/01 - Simple Sort.txt +4 -0
  48. package/config/medium/HillNotationAndHillOrder/input/02 - Quantity Sort.txt +7 -0
  49. package/config/medium/HillNotationAndHillOrder/input/03 - Duplicates.txt +4 -0
  50. package/config/medium/HillNotationAndHillOrder/input/04 - Bigger Sort.txt +11 -0
  51. package/config/medium/HillNotationAndHillOrder/input/05 - Parenthesis.txt +4 -0
  52. package/config/medium/HillNotationAndHillOrder/output/01 - Simple Sort.txt +3 -0
  53. package/config/medium/HillNotationAndHillOrder/output/02 - Quantity Sort.txt +6 -0
  54. package/config/medium/HillNotationAndHillOrder/output/03 - Duplicates.txt +1 -0
  55. package/config/medium/HillNotationAndHillOrder/output/04 - Bigger Sort.txt +10 -0
  56. package/config/medium/HillNotationAndHillOrder/output/05 - Parenthesis.txt +3 -0
  57. package/config/medium/InequalityOverlapArea/code/CGCode.cpp +23 -0
  58. package/config/medium/InequalityOverlapArea/code/CGCode.java +24 -0
  59. package/config/medium/InequalityOverlapArea/code/CGCode.js +11 -0
  60. package/config/medium/InequalityOverlapArea/code/CGCode.php +13 -0
  61. package/config/medium/InequalityOverlapArea/code/CGCode.ts +11 -0
  62. package/config/medium/InequalityOverlapArea/config.json +68 -0
  63. package/config/medium/InequalityOverlapArea/input/01 - Simple Overlap.txt +4 -0
  64. package/config/medium/InequalityOverlapArea/input/02 - Floating.txt +5 -0
  65. package/config/medium/InequalityOverlapArea/input/03 - Pentagon.txt +6 -0
  66. package/config/medium/InequalityOverlapArea/input/04 - NO.txt +9 -0
  67. package/config/medium/InequalityOverlapArea/input/05 - Infinite.txt +7 -0
  68. package/config/medium/InequalityOverlapArea/input/06 - NoOverlap.txt +10 -0
  69. package/config/medium/InequalityOverlapArea/input/07 - Not Finite.txt +10 -0
  70. package/config/medium/InequalityOverlapArea/input/08 - Same Graph.txt +6 -0
  71. package/config/medium/InequalityOverlapArea/input/09 - One Line.txt +7 -0
  72. package/config/medium/InequalityOverlapArea/input/10 - One Point.txt +11 -0
  73. package/config/medium/InequalityOverlapArea/input/11 - Quadrilateral.txt +5 -0
  74. package/config/medium/InequalityOverlapArea/input/12 - Rectangle.txt +5 -0
  75. package/config/medium/InequalityOverlapArea/output/01 - Simple Overlap.txt +1 -0
  76. package/config/medium/InequalityOverlapArea/output/02 - Floating.txt +1 -0
  77. package/config/medium/InequalityOverlapArea/output/03 - Pentagon.txt +1 -0
  78. package/config/medium/InequalityOverlapArea/output/04 - NO.txt +1 -0
  79. package/config/medium/InequalityOverlapArea/output/05 - Infinite.txt +1 -0
  80. package/config/medium/InequalityOverlapArea/output/06 - NoOverlap.txt +1 -0
  81. package/config/medium/InequalityOverlapArea/output/07 - Not Finite.txt +1 -0
  82. package/config/medium/InequalityOverlapArea/output/08 - Same Graph.txt +1 -0
  83. package/config/medium/InequalityOverlapArea/output/09 - One Line.txt +1 -0
  84. package/config/medium/InequalityOverlapArea/output/10 - One Point.txt +1 -0
  85. package/config/medium/InequalityOverlapArea/output/11 - Quadrilateral.txt +1 -0
  86. package/config/medium/InequalityOverlapArea/output/12 - Rectangle.txt +1 -0
  87. package/config/medium/SwappingElements/code/CGCode.cpp +21 -0
  88. package/config/medium/SwappingElements/code/CGCode.java +22 -0
  89. package/config/medium/SwappingElements/code/CGCode.js +9 -0
  90. package/config/medium/SwappingElements/code/CGCode.php +11 -0
  91. package/config/medium/SwappingElements/code/CGCode.ts +9 -0
  92. package/config/medium/SwappingElements/config.json +83 -0
  93. package/config/medium/SwappingElements/input/01 - Kindergarten.txt +4 -0
  94. package/config/medium/SwappingElements/input/02 - ABC.txt +8 -0
  95. package/config/medium/SwappingElements/input/03 - Thread.txt +5 -0
  96. package/config/medium/SwappingElements/input/04 - Bob.txt +8 -0
  97. package/config/medium/SwappingElements/input/05 - Not Bob.txt +4 -0
  98. package/config/medium/SwappingElements/input/06 - Vacuum of the Space Key.txt +7 -0
  99. package/config/medium/SwappingElements/input/07 - Periodic Table.txt +19 -0
  100. package/config/medium/SwappingElements/input/08 - Chemical Compounds.txt +28 -0
  101. package/config/medium/SwappingElements/input/09 - Gibberish.txt +14 -0
  102. package/config/medium/SwappingElements/input/10 - Negative.txt +40 -0
  103. package/config/medium/SwappingElements/input/11 - How/342/200/231s your day going.txt" +19 -0
  104. package/config/medium/SwappingElements/input/12 - The World Ends.txt +117 -0
  105. package/config/medium/SwappingElements/input/13 - Numbering the Last One.txt +30 -0
  106. package/config/medium/SwappingElements/input/14 - Random.txt +19 -0
  107. package/config/medium/SwappingElements/input/15 - Coding.txt +10 -0
  108. package/config/medium/SwappingElements/output/01 - Kindergarten.txt +1 -0
  109. package/config/medium/SwappingElements/output/02 - ABC.txt +1 -0
  110. package/config/medium/SwappingElements/output/03 - Thread.txt +1 -0
  111. package/config/medium/SwappingElements/output/04 - Bob.txt +1 -0
  112. package/config/medium/SwappingElements/output/05 - Not Bob.txt +1 -0
  113. package/config/medium/SwappingElements/output/06 - Vacuum of the Space Key.txt +1 -0
  114. package/config/medium/SwappingElements/output/07 - Periodic Table.txt +1 -0
  115. package/config/medium/SwappingElements/output/08 - Chemical Compounds.txt +1 -0
  116. package/config/medium/SwappingElements/output/09 - Gibberish.txt +1 -0
  117. package/config/medium/SwappingElements/output/10 - Negative.txt +1 -0
  118. package/config/medium/SwappingElements/output/11 - How/342/200/231s your day going.txt" +1 -0
  119. package/config/medium/SwappingElements/output/12 - The World Ends.txt +1 -0
  120. package/config/medium/SwappingElements/output/13 - Numbering the Last One.txt +1 -0
  121. package/config/medium/SwappingElements/output/14 - Random.txt +1 -0
  122. package/config/medium/SwappingElements/output/15 - Coding.txt +1 -0
  123. package/config/medium/TableSolver/code/CGCode.cpp +21 -0
  124. package/config/medium/TableSolver/code/CGCode.java +22 -0
  125. package/config/medium/TableSolver/code/CGCode.js +9 -0
  126. package/config/medium/TableSolver/code/CGCode.php +11 -0
  127. package/config/medium/TableSolver/code/CGCode.ts +9 -0
  128. package/config/medium/TableSolver/config.json +43 -0
  129. package/config/medium/TableSolver/input/01 - Addition.txt +8 -0
  130. package/config/medium/TableSolver/input/02 - Subtraction.txt +8 -0
  131. package/config/medium/TableSolver/input/03 - Multiplication.txt +10 -0
  132. package/config/medium/TableSolver/input/04 - small.txt +4 -0
  133. package/config/medium/TableSolver/input/05 - BIG.txt +15 -0
  134. package/config/medium/TableSolver/input/06 - CG.txt +24 -0
  135. package/config/medium/TableSolver/input/07 - 0.txt +10 -0
  136. package/config/medium/TableSolver/output/01 - Addition.txt +7 -0
  137. package/config/medium/TableSolver/output/02 - Subtraction.txt +7 -0
  138. package/config/medium/TableSolver/output/03 - Multiplication.txt +9 -0
  139. package/config/medium/TableSolver/output/04 - small.txt +3 -0
  140. package/config/medium/TableSolver/output/05 - BIG.txt +15 -0
  141. package/config/medium/TableSolver/output/06 - CG.txt +23 -0
  142. package/config/medium/TableSolver/output/07 - 0.txt +9 -0
  143. package/package.json +1 -1
  144. /package/config/{hard → medium}/Hangman/code/CGCode.js +0 -0
  145. /package/config/{hard → medium}/Hangman/code/CGCode.php +0 -0
  146. /package/config/{hard → medium}/Hangman/input/01 - Solution found.txt +0 -0
  147. /package/config/{hard → medium}/Hangman/input/02 - Wrong answer.txt +0 -0
  148. /package/config/{hard → medium}/Hangman/input/03 - White space.txt +0 -0
  149. /package/config/{hard → medium}/Hangman/input/04 - Same letter.txt +0 -0
  150. /package/config/{hard → medium}/Hangman/output/01 - Solution found.txt +0 -0
  151. /package/config/{hard → medium}/Hangman/output/02 - Wrong answer.txt +0 -0
  152. /package/config/{hard → medium}/Hangman/output/03 - White space.txt +0 -0
  153. /package/config/{hard → medium}/Hangman/output/04 - Same letter.txt +0 -0
@@ -0,0 +1,117 @@
1
+ 116
2
+ This is the end
3
+ because you are about to finish this
4
+ you
5
+ will
6
+ submit
7
+ and never
8
+ come back
9
+ even when
10
+ you reach
11
+ level 999999999999999999999999999999999999999999
12
+ so
13
+ I
14
+ SHALL
15
+ NOT
16
+ LET
17
+ YOU
18
+ PASS!!
19
+ !
20
+ !
21
+ !
22
+ !
23
+ !
24
+ !
25
+ !
26
+ !
27
+ !
28
+ !
29
+ !
30
+ !
31
+ !
32
+ !
33
+ !
34
+ !
35
+ !
36
+ !
37
+ !
38
+ !
39
+ !
40
+ !
41
+ !
42
+ !
43
+ !
44
+ !
45
+ !
46
+ !
47
+ !
48
+ !
49
+ !
50
+ !
51
+ !
52
+ !
53
+ !
54
+ !
55
+ !
56
+ !
57
+ !
58
+ !
59
+ !
60
+ !
61
+ !
62
+ !
63
+ !
64
+ !
65
+ !
66
+ !
67
+ !
68
+ !
69
+ !
70
+ !
71
+ !
72
+ !
73
+ !
74
+ !
75
+ !
76
+ !
77
+ !
78
+ !
79
+ !
80
+ !
81
+ !
82
+ !
83
+ !
84
+ !
85
+ !
86
+ !
87
+ !
88
+ !
89
+ !
90
+ !
91
+ !
92
+ !
93
+ !
94
+ !
95
+ !
96
+ !
97
+ !
98
+ !
99
+ !
100
+ !
101
+ !
102
+ !
103
+ !
104
+ !
105
+ !
106
+ !
107
+ !
108
+ !
109
+ !
110
+ !
111
+ !
112
+ !
113
+ !
114
+ !
115
+ !
116
+ !
117
+ !
@@ -0,0 +1,30 @@
1
+ 29
2
+ -41
3
+ 0.0000
4
+ -1211111113111114
5
+ 49.75
6
+ 5.497.
7
+ 0.00 ZerO
8
+ -84.1145
9
+ 4567123
10
+ 159753.951753 DiagONal
11
+ -7894546
12
+ 45129764.1571654
13
+ -2222222222222222.20222 tWOS
14
+ -3210123 INtegER
15
+ 1212121212121212 o+t
16
+ -75134972.487165
17
+ 1111111111111113
18
+ 1212121178945124.1687524
19
+ -2121212121212121 t+o
20
+ -2134562145751230.150412
21
+ 51 ak9(
22
+ 46
23
+ -94 cj2j=
24
+ 53.1024 2^10
25
+ -19.246810 even
26
+ 12345678 NatuRAl
27
+ -741852.963 veRTICaL
28
+ 1111111111111111.1101 ONES
29
+ 5.497
30
+ -1144.58
@@ -0,0 +1,19 @@
1
+ 18
2
+ zebra
3
+ 8797
4
+ 1972
5
+ Glasses
6
+ 9871
7
+ nonsense
8
+ 987
9
+ cabbage
10
+ 61
11
+ 857
12
+ avacado
13
+ Banana
14
+ 8725
15
+ trusts
16
+ 456.7456
17
+ !@#$%^&*()
18
+ apple
19
+ 789
@@ -0,0 +1,10 @@
1
+ 9
2
+ #include <iostream>
3
+ using namespace std;
4
+ int main(void)
5
+ {
6
+ int a, b;
7
+ cin >> a >> b;
8
+ cout << a+b << endl;
9
+ }
10
+ 693
@@ -0,0 +1,21 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int input_lines;
11
+ cin >> input_lines; cin.ignore();
12
+ for (int i = 0; i < input_lines; i++) {
13
+ string s;
14
+ getline(cin, s);
15
+ }
16
+
17
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
18
+ // To debug: cerr << "Debug messages..." << endl;
19
+
20
+ cout << "The finished table" << endl;
21
+ }
@@ -0,0 +1,22 @@
1
+ import java.util.*;
2
+ import java.io.*;
3
+ import java.math.*;
4
+
5
+ class Solution {
6
+
7
+ public static void main(String args[]) {
8
+ Scanner in = new Scanner(System.in);
9
+ int inputLines = in.nextInt();
10
+ if (in.hasNextLine()) {
11
+ in.nextLine();
12
+ }
13
+ for (int i = 0; i < inputLines; i++) {
14
+ String s = in.nextLine();
15
+ }
16
+
17
+ // Write an answer using System.out.println()
18
+ // To debug: System.err.println("Debug messages...");
19
+
20
+ System.out.println("The finished table");
21
+ }
22
+ }
@@ -0,0 +1,9 @@
1
+ const inputLines = parseInt(readline());
2
+ for (let i = 0; i < inputLines; i++) {
3
+ const s = readline();
4
+ }
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('The finished table');
@@ -0,0 +1,11 @@
1
+ <?php
2
+ fscanf(STDIN, "%d", $inputLines);
3
+ for ($i = 0; $i < $inputLines; $i++)
4
+ {
5
+ $s = stream_get_line(STDIN, 1000 + 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("The finished table\n");
@@ -0,0 +1,9 @@
1
+ const inputLines: number = parseInt(readline());
2
+ for (let i = 0; i < inputLines; i++) {
3
+ const s: string = readline();
4
+ }
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('The finished table');
@@ -0,0 +1,43 @@
1
+ {
2
+ "path": "medium/TableSolver",
3
+ "name": "Table Solver",
4
+ "alphanumName": "TableSolver",
5
+ "link": "https://www.codingame.com/ide/puzzle/table-solver",
6
+ "tests": [
7
+ {
8
+ "name": "Addition",
9
+ "alphanumName": "Addition",
10
+ "file": "01 - Addition.txt"
11
+ },
12
+ {
13
+ "name": "Subtraction",
14
+ "alphanumName": "Subtraction",
15
+ "file": "02 - Subtraction.txt"
16
+ },
17
+ {
18
+ "name": "Multiplication",
19
+ "alphanumName": "Multiplication",
20
+ "file": "03 - Multiplication.txt"
21
+ },
22
+ {
23
+ "name": "small",
24
+ "alphanumName": "small",
25
+ "file": "04 - small.txt"
26
+ },
27
+ {
28
+ "name": "BIG",
29
+ "alphanumName": "BIG",
30
+ "file": "05 - BIG.txt"
31
+ },
32
+ {
33
+ "name": "CG",
34
+ "alphanumName": "CG",
35
+ "file": "06 - CG.txt"
36
+ },
37
+ {
38
+ "name": "0",
39
+ "alphanumName": "Zero",
40
+ "file": "07 - 0.txt"
41
+ }
42
+ ]
43
+ }
@@ -0,0 +1,8 @@
1
+ 7
2
+ + | |5 |
3
+ ___________
4
+ 9 |11| |
5
+ ___________
6
+ | |9 |
7
+ ___________
8
+ 11| | |24
@@ -0,0 +1,8 @@
1
+ 7
2
+ - | |-5 |15
3
+ _______________
4
+ -8 |16 | |
5
+ _______________
6
+ | | |6
7
+ _______________
8
+ | |-6 |
@@ -0,0 +1,10 @@
1
+ 9
2
+ x |14 | |16 |
3
+ _____________________________
4
+ | |-25 |80 |
5
+ _____________________________
6
+ | |250 | |
7
+ _____________________________
8
+ |924 | | |5610
9
+ _____________________________
10
+ | | | |4930
@@ -0,0 +1,4 @@
1
+ 3
2
+ - |6
3
+ _____
4
+ |13
@@ -0,0 +1,15 @@
1
+ + | |1111 | | |-98 | | | |845
2
+ ___________________________________________________________
3
+ | |4687 | | | | | | |
4
+ ___________________________________________________________
5
+ | | |-780 | | | | |-845 |
6
+ ___________________________________________________________
7
+ 99 | | | |120 | | | | |944
8
+ ___________________________________________________________
9
+ -123 | | | | | | |6845 | |
10
+ ___________________________________________________________
11
+ |-1 | | |9887 | | | |4000 |
12
+ ___________________________________________________________
13
+ | | |487 | | |-744 | | |
14
+ ___________________________________________________________
15
+ | | | |1230 | | | | |
@@ -0,0 +1,24 @@
1
+ 23
2
+ - | |-5| |
3
+ ______________
4
+ | |1 |1 |1
5
+ ______________
6
+ |1 | | |
7
+ ______________
8
+ |1 | | |
9
+ ______________
10
+ |1 | | |
11
+ ______________
12
+ | |1 |1 |1
13
+ ______________
14
+ -8| | | |
15
+ ______________
16
+ | |1 |1 |1
17
+ ______________
18
+ |1 | | |
19
+ ______________
20
+ |1 | |1 |1
21
+ ______________
22
+ |1 | | |1
23
+ ______________
24
+ | |1 |1 |
@@ -0,0 +1,10 @@
1
+ 9
2
+ + |11 |0 | |-6
3
+ ___________________
4
+ 6 | | | |
5
+ ___________________
6
+ |6 | |0 |
7
+ ___________________
8
+ 12 | | | |
9
+ ___________________
10
+ | | |-2 |
@@ -0,0 +1,7 @@
1
+ + |2 |5 |13
2
+ ___________
3
+ 9 |11|14|22
4
+ ___________
5
+ 4 |6 |9 |17
6
+ ___________
7
+ 11|13|16|24
@@ -0,0 +1,7 @@
1
+ - |8 |-5 |15
2
+ _______________
3
+ -8 |16 |3 |23
4
+ _______________
5
+ 9 |-1 |-14|6
6
+ _______________
7
+ 1 |7 |-6 |14
@@ -0,0 +1,9 @@
1
+ x |14 |-5 |16 |85
2
+ _____________________________
3
+ 5 |70 |-25 |80 |425
4
+ _____________________________
5
+ -50 |-700 |250 |-800 |-4250
6
+ _____________________________
7
+ 66 |924 |-330 |1056 |5610
8
+ _____________________________
9
+ 58 |812 |-290 |928 |4930
@@ -0,0 +1,3 @@
1
+ - |6
2
+ _____
3
+ -7|13
@@ -0,0 +1,15 @@
1
+ + |-9867|1111 |-5801|21 |-98 |-7032|6968 |-5866|845
2
+ ___________________________________________________________
3
+ 3576 |-6291|4687 |-2225|3597 |3478 |-3456|10544|-2290|4421
4
+ ___________________________________________________________
5
+ 5021 |-4846|6132 |-780 |5042 |4923 |-2011|11989|-845 |5866
6
+ ___________________________________________________________
7
+ 99 |-9768|1210 |-5702|120 |1 |-6933|7067 |-5767|944
8
+ ___________________________________________________________
9
+ -123 |-9990|988 |-5924|-102 |-221 |-7155|6845 |-5989|722
10
+ ___________________________________________________________
11
+ 9866 |-1 |10977|4065 |9887 |9768 |2834 |16834|4000 |10711
12
+ ___________________________________________________________
13
+ 6288 |-3579|7399 |487 |6309 |6190 |-744 |13256|422 |7133
14
+ ___________________________________________________________
15
+ 1209 |-8658|2320 |-4592|1230 |1111 |-5823|8177 |-4657|2054
@@ -0,0 +1,23 @@
1
+ - |-5|-5|-5|-5
2
+ ______________
3
+ -6|1 |1 |1 |1
4
+ ______________
5
+ -6|1 |1 |1 |1
6
+ ______________
7
+ -6|1 |1 |1 |1
8
+ ______________
9
+ -6|1 |1 |1 |1
10
+ ______________
11
+ -6|1 |1 |1 |1
12
+ ______________
13
+ -8|3 |3 |3 |3
14
+ ______________
15
+ -6|1 |1 |1 |1
16
+ ______________
17
+ -6|1 |1 |1 |1
18
+ ______________
19
+ -6|1 |1 |1 |1
20
+ ______________
21
+ -6|1 |1 |1 |1
22
+ ______________
23
+ -6|1 |1 |1 |1
@@ -0,0 +1,9 @@
1
+ + |11 |0 |5 |-6
2
+ ___________________
3
+ 6 |17 |6 |11 |0
4
+ ___________________
5
+ -5 |6 |-5 |0 |-11
6
+ ___________________
7
+ 12 |23 |12 |17 |6
8
+ ___________________
9
+ -7 |4 |-7 |-2 |-13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyrilverloop/codingame-configuration",
3
- "version": "1.18.0",
3
+ "version": "1.19.0",
4
4
  "description": "A project that contains CodinGame input, output and default code.",
5
5
  "repository": {
6
6
  "type": "git",
File without changes
File without changes