@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.
- package/CHANGELOG.md +12 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.cpp +17 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.java +16 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.js +6 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.php +7 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.ts +6 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/config.json +33 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/01 - test 1.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/02 - test 2.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/03 - test 3.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/04 - test 4.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/05 - test 5.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/01 - test 1.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/02 - test 2.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/03 - test 3.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/04 - test 4.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/05 - test 5.txt +1 -0
- package/config/hard/UnfloodTheWorld/code/CGCode.cpp +24 -0
- package/config/hard/UnfloodTheWorld/code/CGCode.java +22 -0
- package/config/hard/UnfloodTheWorld/code/CGCode.js +14 -0
- package/config/hard/UnfloodTheWorld/code/CGCode.php +15 -0
- package/config/hard/UnfloodTheWorld/code/CGCode.ts +14 -0
- package/config/hard/UnfloodTheWorld/config.json +48 -0
- package/config/hard/UnfloodTheWorld/input/01 - One drain.txt +5 -0
- package/config/hard/UnfloodTheWorld/input/02 - Hill.txt +6 -0
- package/config/hard/UnfloodTheWorld/input/03 - Wall.txt +4 -0
- package/config/hard/UnfloodTheWorld/input/04 - Flat field.txt +4 -0
- package/config/hard/UnfloodTheWorld/input/05 - Chess board.txt +6 -0
- package/config/hard/UnfloodTheWorld/input/06 - Fractal.txt +10 -0
- package/config/hard/UnfloodTheWorld/input/07 - Maze.txt +10 -0
- package/config/hard/UnfloodTheWorld/input/08 - Plateaus.txt +7 -0
- package/config/hard/UnfloodTheWorld/output/01 - One drain.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/02 - Hill.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/03 - Wall.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/04 - Flat field.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/05 - Chess board.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/06 - Fractal.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/07 - Maze.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/08 - Plateaus.txt +1 -0
- package/config/{hard → medium}/Hangman/config.json +1 -1
- package/config/medium/HillNotationAndHillOrder/code/CGCode.cpp +26 -0
- package/config/medium/HillNotationAndHillOrder/code/CGCode.java +26 -0
- package/config/medium/HillNotationAndHillOrder/code/CGCode.js +9 -0
- package/config/medium/HillNotationAndHillOrder/code/CGCode.php +11 -0
- package/config/medium/HillNotationAndHillOrder/code/CGCode.ts +9 -0
- package/config/medium/HillNotationAndHillOrder/config.json +33 -0
- package/config/medium/HillNotationAndHillOrder/input/01 - Simple Sort.txt +4 -0
- package/config/medium/HillNotationAndHillOrder/input/02 - Quantity Sort.txt +7 -0
- package/config/medium/HillNotationAndHillOrder/input/03 - Duplicates.txt +4 -0
- package/config/medium/HillNotationAndHillOrder/input/04 - Bigger Sort.txt +11 -0
- package/config/medium/HillNotationAndHillOrder/input/05 - Parenthesis.txt +4 -0
- package/config/medium/HillNotationAndHillOrder/output/01 - Simple Sort.txt +3 -0
- package/config/medium/HillNotationAndHillOrder/output/02 - Quantity Sort.txt +6 -0
- package/config/medium/HillNotationAndHillOrder/output/03 - Duplicates.txt +1 -0
- package/config/medium/HillNotationAndHillOrder/output/04 - Bigger Sort.txt +10 -0
- package/config/medium/HillNotationAndHillOrder/output/05 - Parenthesis.txt +3 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.cpp +23 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.java +24 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.js +11 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.php +13 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.ts +11 -0
- package/config/medium/InequalityOverlapArea/config.json +68 -0
- package/config/medium/InequalityOverlapArea/input/01 - Simple Overlap.txt +4 -0
- package/config/medium/InequalityOverlapArea/input/02 - Floating.txt +5 -0
- package/config/medium/InequalityOverlapArea/input/03 - Pentagon.txt +6 -0
- package/config/medium/InequalityOverlapArea/input/04 - NO.txt +9 -0
- package/config/medium/InequalityOverlapArea/input/05 - Infinite.txt +7 -0
- package/config/medium/InequalityOverlapArea/input/06 - NoOverlap.txt +10 -0
- package/config/medium/InequalityOverlapArea/input/07 - Not Finite.txt +10 -0
- package/config/medium/InequalityOverlapArea/input/08 - Same Graph.txt +6 -0
- package/config/medium/InequalityOverlapArea/input/09 - One Line.txt +7 -0
- package/config/medium/InequalityOverlapArea/input/10 - One Point.txt +11 -0
- package/config/medium/InequalityOverlapArea/input/11 - Quadrilateral.txt +5 -0
- package/config/medium/InequalityOverlapArea/input/12 - Rectangle.txt +5 -0
- package/config/medium/InequalityOverlapArea/output/01 - Simple Overlap.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/02 - Floating.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/03 - Pentagon.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/04 - NO.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/05 - Infinite.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/06 - NoOverlap.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/07 - Not Finite.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/08 - Same Graph.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/09 - One Line.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/10 - One Point.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/11 - Quadrilateral.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/12 - Rectangle.txt +1 -0
- package/config/medium/SwappingElements/code/CGCode.cpp +21 -0
- package/config/medium/SwappingElements/code/CGCode.java +22 -0
- package/config/medium/SwappingElements/code/CGCode.js +9 -0
- package/config/medium/SwappingElements/code/CGCode.php +11 -0
- package/config/medium/SwappingElements/code/CGCode.ts +9 -0
- package/config/medium/SwappingElements/config.json +83 -0
- package/config/medium/SwappingElements/input/01 - Kindergarten.txt +4 -0
- package/config/medium/SwappingElements/input/02 - ABC.txt +8 -0
- package/config/medium/SwappingElements/input/03 - Thread.txt +5 -0
- package/config/medium/SwappingElements/input/04 - Bob.txt +8 -0
- package/config/medium/SwappingElements/input/05 - Not Bob.txt +4 -0
- package/config/medium/SwappingElements/input/06 - Vacuum of the Space Key.txt +7 -0
- package/config/medium/SwappingElements/input/07 - Periodic Table.txt +19 -0
- package/config/medium/SwappingElements/input/08 - Chemical Compounds.txt +28 -0
- package/config/medium/SwappingElements/input/09 - Gibberish.txt +14 -0
- package/config/medium/SwappingElements/input/10 - Negative.txt +40 -0
- package/config/medium/SwappingElements/input/11 - How/342/200/231s your day going.txt" +19 -0
- package/config/medium/SwappingElements/input/12 - The World Ends.txt +117 -0
- package/config/medium/SwappingElements/input/13 - Numbering the Last One.txt +30 -0
- package/config/medium/SwappingElements/input/14 - Random.txt +19 -0
- package/config/medium/SwappingElements/input/15 - Coding.txt +10 -0
- package/config/medium/SwappingElements/output/01 - Kindergarten.txt +1 -0
- package/config/medium/SwappingElements/output/02 - ABC.txt +1 -0
- package/config/medium/SwappingElements/output/03 - Thread.txt +1 -0
- package/config/medium/SwappingElements/output/04 - Bob.txt +1 -0
- package/config/medium/SwappingElements/output/05 - Not Bob.txt +1 -0
- package/config/medium/SwappingElements/output/06 - Vacuum of the Space Key.txt +1 -0
- package/config/medium/SwappingElements/output/07 - Periodic Table.txt +1 -0
- package/config/medium/SwappingElements/output/08 - Chemical Compounds.txt +1 -0
- package/config/medium/SwappingElements/output/09 - Gibberish.txt +1 -0
- package/config/medium/SwappingElements/output/10 - Negative.txt +1 -0
- package/config/medium/SwappingElements/output/11 - How/342/200/231s your day going.txt" +1 -0
- package/config/medium/SwappingElements/output/12 - The World Ends.txt +1 -0
- package/config/medium/SwappingElements/output/13 - Numbering the Last One.txt +1 -0
- package/config/medium/SwappingElements/output/14 - Random.txt +1 -0
- package/config/medium/SwappingElements/output/15 - Coding.txt +1 -0
- package/config/medium/TableSolver/code/CGCode.cpp +21 -0
- package/config/medium/TableSolver/code/CGCode.java +22 -0
- package/config/medium/TableSolver/code/CGCode.js +9 -0
- package/config/medium/TableSolver/code/CGCode.php +11 -0
- package/config/medium/TableSolver/code/CGCode.ts +9 -0
- package/config/medium/TableSolver/config.json +43 -0
- package/config/medium/TableSolver/input/01 - Addition.txt +8 -0
- package/config/medium/TableSolver/input/02 - Subtraction.txt +8 -0
- package/config/medium/TableSolver/input/03 - Multiplication.txt +10 -0
- package/config/medium/TableSolver/input/04 - small.txt +4 -0
- package/config/medium/TableSolver/input/05 - BIG.txt +15 -0
- package/config/medium/TableSolver/input/06 - CG.txt +24 -0
- package/config/medium/TableSolver/input/07 - 0.txt +10 -0
- package/config/medium/TableSolver/output/01 - Addition.txt +7 -0
- package/config/medium/TableSolver/output/02 - Subtraction.txt +7 -0
- package/config/medium/TableSolver/output/03 - Multiplication.txt +9 -0
- package/config/medium/TableSolver/output/04 - small.txt +3 -0
- package/config/medium/TableSolver/output/05 - BIG.txt +15 -0
- package/config/medium/TableSolver/output/06 - CG.txt +23 -0
- package/config/medium/TableSolver/output/07 - 0.txt +9 -0
- package/package.json +1 -1
- /package/config/{hard → medium}/Hangman/code/CGCode.js +0 -0
- /package/config/{hard → medium}/Hangman/code/CGCode.php +0 -0
- /package/config/{hard → medium}/Hangman/input/01 - Solution found.txt +0 -0
- /package/config/{hard → medium}/Hangman/input/02 - Wrong answer.txt +0 -0
- /package/config/{hard → medium}/Hangman/input/03 - White space.txt +0 -0
- /package/config/{hard → medium}/Hangman/input/04 - Same letter.txt +0 -0
- /package/config/{hard → medium}/Hangman/output/01 - Solution found.txt +0 -0
- /package/config/{hard → medium}/Hangman/output/02 - Wrong answer.txt +0 -0
- /package/config/{hard → medium}/Hangman/output/03 - White space.txt +0 -0
- /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 @@
|
|
1
|
+
1
|
@@ -0,0 +1 @@
|
|
1
|
+
6
|
@@ -0,0 +1 @@
|
|
1
|
+
1
|
@@ -0,0 +1 @@
|
|
1
|
+
4
|
@@ -0,0 +1 @@
|
|
1
|
+
1
|
@@ -0,0 +1 @@
|
|
1
|
+
2
|
@@ -0,0 +1 @@
|
|
1
|
+
16
|
@@ -0,0 +1 @@
|
|
1
|
+
22
|
@@ -0,0 +1 @@
|
|
1
|
+
9
|
@@ -0,0 +1 @@
|
|
1
|
+
-1
|
@@ -0,0 +1 @@
|
|
1
|
+
14
|
@@ -0,0 +1 @@
|
|
1
|
+
-1
|
@@ -0,0 +1 @@
|
|
1
|
+
26
|
@@ -0,0 +1 @@
|
|
1
|
+
-1
|
@@ -0,0 +1 @@
|
|
1
|
+
-1
|
@@ -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,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,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,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,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
|
package/package.json
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|