@cyrilverloop/codingame-configuration 1.28.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.
Files changed (78) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/config/easy/HagridSpeaking/code/CGCode.cpp +21 -0
  3. package/config/easy/HagridSpeaking/code/CGCode.java +22 -0
  4. package/config/easy/HagridSpeaking/code/CGCode.js +9 -0
  5. package/config/easy/HagridSpeaking/code/CGCode.php +11 -0
  6. package/config/easy/HagridSpeaking/code/CGCode.ts +9 -0
  7. package/config/easy/HagridSpeaking/config.json +48 -0
  8. package/config/easy/HagridSpeaking/input/01 - Simple sentences.txt +3 -0
  9. package/config/easy/HagridSpeaking/input/02 - Does Hagrid speak.txt +6 -0
  10. package/config/easy/HagridSpeaking/input/03 - t,f, d and g replacement.txt +8 -0
  11. package/config/easy/HagridSpeaking/input/04 - Word replacement.txt +2 -0
  12. package/config/easy/HagridSpeaking/input/05 - Do yeh forge/342/200/231 the case.txt" +3 -0
  13. package/config/easy/HagridSpeaking/input/06 - Compound Words.txt +2 -0
  14. package/config/easy/HagridSpeaking/input/07 - Edge cases.txt +11 -0
  15. package/config/easy/HagridSpeaking/input/08 - Very long talk.txt +12 -0
  16. package/config/easy/HagridSpeaking/output/01 - Simple sentences.txt +2 -0
  17. package/config/easy/HagridSpeaking/output/02 - Does Hagrid speak.txt +5 -0
  18. package/config/easy/HagridSpeaking/output/03 - t,f, d and g replacement.txt +7 -0
  19. package/config/easy/HagridSpeaking/output/04 - Word replacement.txt +1 -0
  20. package/config/easy/HagridSpeaking/output/05 - Do yeh forge/342/200/231 the case.txt" +2 -0
  21. package/config/easy/HagridSpeaking/output/06 - Compound Words.txt +1 -0
  22. package/config/easy/HagridSpeaking/output/07 - Edge cases.txt +10 -0
  23. package/config/easy/HagridSpeaking/output/08 - Very long talk.txt +11 -0
  24. package/config/medium/SimpleMakefiles/code/CGCode.cpp +34 -0
  25. package/config/medium/SimpleMakefiles/code/CGCode.java +31 -0
  26. package/config/medium/SimpleMakefiles/code/CGCode.js +20 -0
  27. package/config/medium/SimpleMakefiles/code/CGCode.php +22 -0
  28. package/config/medium/SimpleMakefiles/code/CGCode.ts +20 -0
  29. package/config/medium/SimpleMakefiles/config.json +83 -0
  30. package/config/medium/SimpleMakefiles/input/01 - Problem statement example.txt +12 -0
  31. package/config/medium/SimpleMakefiles/input/02 - Up-to-date check and partial rebuild.txt +13 -0
  32. package/config/medium/SimpleMakefiles/input/03 - Single rule with no actions.txt +6 -0
  33. package/config/medium/SimpleMakefiles/input/04 - Up-to-date ages.txt +14 -0
  34. package/config/medium/SimpleMakefiles/input/05 - Multiple goal targets.txt +16 -0
  35. package/config/medium/SimpleMakefiles/input/06 - No-action intermediates and unused rules.txt +19 -0
  36. package/config/medium/SimpleMakefiles/input/07 - Multiple targets with identical prerequisites.txt +18 -0
  37. package/config/medium/SimpleMakefiles/input/08 - Built-in macros and comments.txt +19 -0
  38. package/config/medium/SimpleMakefiles/input/09 - Same target in multiple rules.txt +23 -0
  39. package/config/medium/SimpleMakefiles/input/10 - Large partial rebuild.txt +25 -0
  40. package/config/medium/SimpleMakefiles/input/11 - Cycle detection.txt +22 -0
  41. package/config/medium/SimpleMakefiles/input/12 - Unreachable cycle detection.txt +22 -0
  42. package/config/medium/SimpleMakefiles/input/13 - All rebuild features combined.txt +40 -0
  43. package/config/medium/SimpleMakefiles/input/14 - Multiple action lines per rule.txt +25 -0
  44. package/config/medium/SimpleMakefiles/input/15 - Kitchen sink.txt +56 -0
  45. package/config/medium/SimpleMakefiles/output/01 - Problem statement example.txt +4 -0
  46. package/config/medium/SimpleMakefiles/output/02 - Up-to-date check and partial rebuild.txt +3 -0
  47. package/config/medium/SimpleMakefiles/output/03 - Single rule with no actions.txt +1 -0
  48. package/config/medium/SimpleMakefiles/output/04 - Up-to-date ages.txt +1 -0
  49. package/config/medium/SimpleMakefiles/output/05 - Multiple goal targets.txt +4 -0
  50. package/config/medium/SimpleMakefiles/output/06 - No-action intermediates and unused rules.txt +3 -0
  51. package/config/medium/SimpleMakefiles/output/07 - Multiple targets with identical prerequisites.txt +4 -0
  52. package/config/medium/SimpleMakefiles/output/08 - Built-in macros and comments.txt +6 -0
  53. package/config/medium/SimpleMakefiles/output/09 - Same target in multiple rules.txt +5 -0
  54. package/config/medium/SimpleMakefiles/output/10 - Large partial rebuild.txt +4 -0
  55. package/config/medium/SimpleMakefiles/output/11 - Cycle detection.txt +1 -0
  56. package/config/medium/SimpleMakefiles/output/12 - Unreachable cycle detection.txt +1 -0
  57. package/config/medium/SimpleMakefiles/output/13 - All rebuild features combined.txt +8 -0
  58. package/config/medium/SimpleMakefiles/output/14 - Multiple action lines per rule.txt +11 -0
  59. package/config/medium/SimpleMakefiles/output/15 - Kitchen sink.txt +14 -0
  60. package/config/medium/Squares/code/CGCode.cpp +30 -0
  61. package/config/medium/Squares/code/CGCode.java +27 -0
  62. package/config/medium/Squares/code/CGCode.js +20 -0
  63. package/config/medium/Squares/code/CGCode.php +15 -0
  64. package/config/medium/Squares/code/CGCode.ts +20 -0
  65. package/config/medium/Squares/config.json +38 -0
  66. package/config/medium/Squares/input/01 - Example.txt +10 -0
  67. package/config/medium/Squares/input/02 - Overlap.txt +17 -0
  68. package/config/medium/Squares/input/03 - Fat Squares.txt +15 -0
  69. package/config/medium/Squares/input/04 - Black Hole.txt +20 -0
  70. package/config/medium/Squares/input/05 - Venn.txt +28 -0
  71. package/config/medium/Squares/input/06 - Dartboard.txt +51 -0
  72. package/config/medium/Squares/output/01 - Example.txt +7 -0
  73. package/config/medium/Squares/output/02 - Overlap.txt +12 -0
  74. package/config/medium/Squares/output/03 - Fat Squares.txt +10 -0
  75. package/config/medium/Squares/output/04 - Black Hole.txt +15 -0
  76. package/config/medium/Squares/output/05 - Venn.txt +23 -0
  77. package/config/medium/Squares/output/06 - Dartboard.txt +46 -0
  78. package/package.json +1 -1
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyrilverloop/codingame-configuration",
3
- "version": "1.28.0",
3
+ "version": "1.29.0",
4
4
  "description": "A project that contains CodinGame input, output and default code.",
5
5
  "repository": {
6
6
  "type": "git",