@cyrilverloop/codingame-configuration 1.27.0 → 1.29.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 +10 -0
- package/config/easy/HagridSpeaking/code/CGCode.cpp +21 -0
- package/config/easy/HagridSpeaking/code/CGCode.java +22 -0
- package/config/easy/HagridSpeaking/code/CGCode.js +9 -0
- package/config/easy/HagridSpeaking/code/CGCode.php +11 -0
- package/config/easy/HagridSpeaking/code/CGCode.ts +9 -0
- package/config/easy/HagridSpeaking/config.json +48 -0
- package/config/easy/HagridSpeaking/input/01 - Simple sentences.txt +3 -0
- package/config/easy/HagridSpeaking/input/02 - Does Hagrid speak.txt +6 -0
- package/config/easy/HagridSpeaking/input/03 - t,f, d and g replacement.txt +8 -0
- package/config/easy/HagridSpeaking/input/04 - Word replacement.txt +2 -0
- package/config/easy/HagridSpeaking/input/05 - Do yeh forge/342/200/231 the case.txt" +3 -0
- package/config/easy/HagridSpeaking/input/06 - Compound Words.txt +2 -0
- package/config/easy/HagridSpeaking/input/07 - Edge cases.txt +11 -0
- package/config/easy/HagridSpeaking/input/08 - Very long talk.txt +12 -0
- package/config/easy/HagridSpeaking/output/01 - Simple sentences.txt +2 -0
- package/config/easy/HagridSpeaking/output/02 - Does Hagrid speak.txt +5 -0
- package/config/easy/HagridSpeaking/output/03 - t,f, d and g replacement.txt +7 -0
- package/config/easy/HagridSpeaking/output/04 - Word replacement.txt +1 -0
- package/config/easy/HagridSpeaking/output/05 - Do yeh forge/342/200/231 the case.txt" +2 -0
- package/config/easy/HagridSpeaking/output/06 - Compound Words.txt +1 -0
- package/config/easy/HagridSpeaking/output/07 - Edge cases.txt +10 -0
- package/config/easy/HagridSpeaking/output/08 - Very long talk.txt +11 -0
- package/config/{easy → medium}/RemoveInsertStatements/config.json +1 -1
- package/config/medium/SimpleMakefiles/code/CGCode.cpp +34 -0
- package/config/medium/SimpleMakefiles/code/CGCode.java +31 -0
- package/config/medium/SimpleMakefiles/code/CGCode.js +20 -0
- package/config/medium/SimpleMakefiles/code/CGCode.php +22 -0
- package/config/medium/SimpleMakefiles/code/CGCode.ts +20 -0
- package/config/medium/SimpleMakefiles/config.json +83 -0
- package/config/medium/SimpleMakefiles/input/01 - Problem statement example.txt +12 -0
- package/config/medium/SimpleMakefiles/input/02 - Up-to-date check and partial rebuild.txt +13 -0
- package/config/medium/SimpleMakefiles/input/03 - Single rule with no actions.txt +6 -0
- package/config/medium/SimpleMakefiles/input/04 - Up-to-date ages.txt +14 -0
- package/config/medium/SimpleMakefiles/input/05 - Multiple goal targets.txt +16 -0
- package/config/medium/SimpleMakefiles/input/06 - No-action intermediates and unused rules.txt +19 -0
- package/config/medium/SimpleMakefiles/input/07 - Multiple targets with identical prerequisites.txt +18 -0
- package/config/medium/SimpleMakefiles/input/08 - Built-in macros and comments.txt +19 -0
- package/config/medium/SimpleMakefiles/input/09 - Same target in multiple rules.txt +23 -0
- package/config/medium/SimpleMakefiles/input/10 - Large partial rebuild.txt +25 -0
- package/config/medium/SimpleMakefiles/input/11 - Cycle detection.txt +22 -0
- package/config/medium/SimpleMakefiles/input/12 - Unreachable cycle detection.txt +22 -0
- package/config/medium/SimpleMakefiles/input/13 - All rebuild features combined.txt +40 -0
- package/config/medium/SimpleMakefiles/input/14 - Multiple action lines per rule.txt +25 -0
- package/config/medium/SimpleMakefiles/input/15 - Kitchen sink.txt +56 -0
- package/config/medium/SimpleMakefiles/output/01 - Problem statement example.txt +4 -0
- package/config/medium/SimpleMakefiles/output/02 - Up-to-date check and partial rebuild.txt +3 -0
- package/config/medium/SimpleMakefiles/output/03 - Single rule with no actions.txt +1 -0
- package/config/medium/SimpleMakefiles/output/04 - Up-to-date ages.txt +1 -0
- package/config/medium/SimpleMakefiles/output/05 - Multiple goal targets.txt +4 -0
- package/config/medium/SimpleMakefiles/output/06 - No-action intermediates and unused rules.txt +3 -0
- package/config/medium/SimpleMakefiles/output/07 - Multiple targets with identical prerequisites.txt +4 -0
- package/config/medium/SimpleMakefiles/output/08 - Built-in macros and comments.txt +6 -0
- package/config/medium/SimpleMakefiles/output/09 - Same target in multiple rules.txt +5 -0
- package/config/medium/SimpleMakefiles/output/10 - Large partial rebuild.txt +4 -0
- package/config/medium/SimpleMakefiles/output/11 - Cycle detection.txt +1 -0
- package/config/medium/SimpleMakefiles/output/12 - Unreachable cycle detection.txt +1 -0
- package/config/medium/SimpleMakefiles/output/13 - All rebuild features combined.txt +8 -0
- package/config/medium/SimpleMakefiles/output/14 - Multiple action lines per rule.txt +11 -0
- package/config/medium/SimpleMakefiles/output/15 - Kitchen sink.txt +14 -0
- package/config/medium/Squares/code/CGCode.cpp +30 -0
- package/config/medium/Squares/code/CGCode.java +27 -0
- package/config/medium/Squares/code/CGCode.js +20 -0
- package/config/medium/Squares/code/CGCode.php +15 -0
- package/config/medium/Squares/code/CGCode.ts +20 -0
- package/config/medium/Squares/config.json +38 -0
- package/config/medium/Squares/input/01 - Example.txt +10 -0
- package/config/medium/Squares/input/02 - Overlap.txt +17 -0
- package/config/medium/Squares/input/03 - Fat Squares.txt +15 -0
- package/config/medium/Squares/input/04 - Black Hole.txt +20 -0
- package/config/medium/Squares/input/05 - Venn.txt +28 -0
- package/config/medium/Squares/input/06 - Dartboard.txt +51 -0
- package/config/medium/Squares/output/01 - Example.txt +7 -0
- package/config/medium/Squares/output/02 - Overlap.txt +12 -0
- package/config/medium/Squares/output/03 - Fat Squares.txt +10 -0
- package/config/medium/Squares/output/04 - Black Hole.txt +15 -0
- package/config/medium/Squares/output/05 - Venn.txt +23 -0
- package/config/medium/Squares/output/06 - Dartboard.txt +46 -0
- package/package.json +1 -1
- /package/config/{easy → medium}/RemoveInsertStatements/code/CGCode.js +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/code/CGCode.php +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/input/01 - simple insert statement.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/input/02 - simple commented statement.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/input/03 - insert + comment.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/input/04 - with function.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/input/05 - many insert statements.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/input/06 - functions + inserts.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/input/07 - multi-line INSERT instructions.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/input/08 - many insert on same line.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/output/01 - simple insert statement.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/output/02 - simple commented statement.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/output/03 - insert + comment.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/output/04 - with function.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/output/05 - many insert statements.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/output/06 - functions + inserts.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/output/07 - multi-line INSERT instructions.txt +0 -0
- /package/config/{easy → medium}/RemoveInsertStatements/output/08 - many insert on same line.txt +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
399999975
|
|
2
|
+
399999975
|
|
3
|
+
399999975
|
|
4
|
+
399999975
|
|
5
|
+
399999975
|
|
6
|
+
399999975
|
|
7
|
+
399999975
|
|
8
|
+
399999975
|
|
9
|
+
15
|
|
10
|
+
15
|
|
11
|
+
15
|
|
12
|
+
15
|
|
13
|
+
15
|
|
14
|
+
399999975
|
|
15
|
+
399999975
|
|
16
|
+
399999975
|
|
17
|
+
399999975
|
|
18
|
+
399999975
|
|
19
|
+
399999975
|
|
20
|
+
399999975
|
|
21
|
+
399999975
|
|
22
|
+
399999975
|
|
23
|
+
15
|
|
24
|
+
8
|
|
25
|
+
8
|
|
26
|
+
8
|
|
27
|
+
15
|
|
28
|
+
399999975
|
|
29
|
+
399999975
|
|
30
|
+
399999975
|
|
31
|
+
399999975
|
|
32
|
+
399999975
|
|
33
|
+
399999975
|
|
34
|
+
399999975
|
|
35
|
+
399999975
|
|
36
|
+
399999975
|
|
37
|
+
15
|
|
38
|
+
8
|
|
39
|
+
1
|
|
40
|
+
8
|
|
41
|
+
1
|
|
42
|
+
399999975
|
|
43
|
+
399999975
|
|
44
|
+
399999975
|
|
45
|
+
399999975
|
|
46
|
+
399999975
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
/package/config/{easy → medium}/RemoveInsertStatements/input/01 - simple insert statement.txt
RENAMED
|
File without changes
|
/package/config/{easy → medium}/RemoveInsertStatements/input/02 - simple commented statement.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/config/{easy → medium}/RemoveInsertStatements/input/05 - many insert statements.txt
RENAMED
|
File without changes
|
|
File without changes
|
/package/config/{easy → medium}/RemoveInsertStatements/input/07 - multi-line INSERT instructions.txt
RENAMED
|
File without changes
|
/package/config/{easy → medium}/RemoveInsertStatements/input/08 - many insert on same line.txt
RENAMED
|
File without changes
|
/package/config/{easy → medium}/RemoveInsertStatements/output/01 - simple insert statement.txt
RENAMED
|
File without changes
|
/package/config/{easy → medium}/RemoveInsertStatements/output/02 - simple commented statement.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/config/{easy → medium}/RemoveInsertStatements/output/05 - many insert statements.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/config/{easy → medium}/RemoveInsertStatements/output/08 - many insert on same line.txt
RENAMED
|
File without changes
|