@cyrilverloop/codingame-configuration 1.25.0 → 1.27.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 (284) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/config/easy/CistercianAddition/code/CGCode.cpp +23 -0
  3. package/config/easy/CistercianAddition/code/CGCode.java +21 -0
  4. package/config/easy/CistercianAddition/code/CGCode.js +11 -0
  5. package/config/easy/CistercianAddition/code/CGCode.php +14 -0
  6. package/config/easy/CistercianAddition/code/CGCode.ts +11 -0
  7. package/config/easy/CistercianAddition/config.json +68 -0
  8. package/config/easy/CistercianAddition/input/01 - Units.txt +10 -0
  9. package/config/easy/CistercianAddition/input/02 - Tens.txt +10 -0
  10. package/config/easy/CistercianAddition/input/03 - Hundreds.txt +10 -0
  11. package/config/easy/CistercianAddition/input/04 - Thousands.txt +10 -0
  12. package/config/easy/CistercianAddition/input/05 - Limit.txt +10 -0
  13. package/config/easy/CistercianAddition/input/06 - Missing tens.txt +10 -0
  14. package/config/easy/CistercianAddition/input/07 - Missing numbers.txt +10 -0
  15. package/config/easy/CistercianAddition/input/08 - Change of multiples.txt +10 -0
  16. package/config/easy/CistercianAddition/input/09 - Basic symbols.txt +10 -0
  17. package/config/easy/CistercianAddition/input/10 - Repetitive numbers.txt +10 -0
  18. package/config/easy/CistercianAddition/input/11 - Random number 1.txt +10 -0
  19. package/config/easy/CistercianAddition/input/12 - Random number 2.txt +10 -0
  20. package/config/easy/CistercianAddition/output/01 - Units.txt +5 -0
  21. package/config/easy/CistercianAddition/output/02 - Tens.txt +5 -0
  22. package/config/easy/CistercianAddition/output/03 - Hundreds.txt +5 -0
  23. package/config/easy/CistercianAddition/output/04 - Thousands.txt +5 -0
  24. package/config/easy/CistercianAddition/output/05 - Limit.txt +5 -0
  25. package/config/easy/CistercianAddition/output/06 - Missing tens.txt +5 -0
  26. package/config/easy/CistercianAddition/output/07 - Missing numbers.txt +5 -0
  27. package/config/easy/CistercianAddition/output/08 - Change of multiples.txt +5 -0
  28. package/config/easy/CistercianAddition/output/09 - Basic symbols.txt +5 -0
  29. package/config/easy/CistercianAddition/output/10 - Repetitive numbers.txt +5 -0
  30. package/config/easy/CistercianAddition/output/11 - Random number 1.txt +5 -0
  31. package/config/easy/CistercianAddition/output/12 - Random number 2.txt +5 -0
  32. package/config/easy/JumpTheQueue/code/CGCode.cpp +26 -0
  33. package/config/easy/JumpTheQueue/code/CGCode.java +26 -0
  34. package/config/easy/JumpTheQueue/code/CGCode.js +15 -0
  35. package/config/easy/JumpTheQueue/code/CGCode.php +16 -0
  36. package/config/easy/JumpTheQueue/code/CGCode.ts +15 -0
  37. package/config/easy/JumpTheQueue/config.json +48 -0
  38. package/config/easy/JumpTheQueue/input/01 - Example.txt +4 -0
  39. package/config/easy/JumpTheQueue/input/02 - Incomplete dequeue.txt +6 -0
  40. package/config/easy/JumpTheQueue/input/03 - Interlacing events.txt +6 -0
  41. package/config/easy/JumpTheQueue/input/04 - Rejoining the queue.txt +10 -0
  42. package/config/easy/JumpTheQueue/input/05 - Busy queue.txt +14 -0
  43. package/config/easy/JumpTheQueue/input/06 - Bigger friend groups.txt +5 -0
  44. package/config/easy/JumpTheQueue/input/07 - Large pack of lone wolves.txt +4 -0
  45. package/config/easy/JumpTheQueue/input/08 - Long queue.txt +22 -0
  46. package/config/easy/JumpTheQueue/output/01 - Example.txt +7 -0
  47. package/config/easy/JumpTheQueue/output/02 - Incomplete dequeue.txt +14 -0
  48. package/config/easy/JumpTheQueue/output/03 - Interlacing events.txt +18 -0
  49. package/config/easy/JumpTheQueue/output/04 - Rejoining the queue.txt +29 -0
  50. package/config/easy/JumpTheQueue/output/05 - Busy queue.txt +47 -0
  51. package/config/easy/JumpTheQueue/output/06 - Bigger friend groups.txt +64 -0
  52. package/config/easy/JumpTheQueue/output/07 - Large pack of lone wolves.txt +105 -0
  53. package/config/easy/JumpTheQueue/output/08 - Long queue.txt +160 -0
  54. package/config/easy/LeapOfSheep/code/CGCode.cpp +21 -0
  55. package/config/easy/LeapOfSheep/code/CGCode.java +19 -0
  56. package/config/easy/LeapOfSheep/code/CGCode.js +10 -0
  57. package/config/easy/LeapOfSheep/code/CGCode.php +12 -0
  58. package/config/easy/LeapOfSheep/code/CGCode.ts +10 -0
  59. package/config/easy/LeapOfSheep/config.json +88 -0
  60. package/config/easy/LeapOfSheep/input/01 - Example.txt +2 -0
  61. package/config/easy/LeapOfSheep/input/02 - Highest is not best.txt +2 -0
  62. package/config/easy/LeapOfSheep/input/03 - Only 1 valid.txt +2 -0
  63. package/config/easy/LeapOfSheep/input/04 - Increasing then decreasing.txt +2 -0
  64. package/config/easy/LeapOfSheep/input/05 - Hills.txt +2 -0
  65. package/config/easy/LeapOfSheep/input/06 - Symmetric field.txt +2 -0
  66. package/config/easy/LeapOfSheep/input/07 - Fluctuations.txt +2 -0
  67. package/config/easy/LeapOfSheep/input/08 - Small step.txt +2 -0
  68. package/config/easy/LeapOfSheep/input/09 - Big heights.txt +2 -0
  69. package/config/easy/LeapOfSheep/input/10 - So high!.txt +2 -0
  70. package/config/easy/LeapOfSheep/input/11 - Giant leap.txt +2 -0
  71. package/config/easy/LeapOfSheep/input/12 - Bigger.txt +2 -0
  72. package/config/easy/LeapOfSheep/input/13 - Lots of similar.txt +2 -0
  73. package/config/easy/LeapOfSheep/input/14 - Leap of faith.txt +2 -0
  74. package/config/easy/LeapOfSheep/input/15 - Similar heights.txt +2 -0
  75. package/config/easy/LeapOfSheep/input/16 - So many piles.txt +2 -0
  76. package/config/easy/LeapOfSheep/output/01 - Example.txt +1 -0
  77. package/config/easy/LeapOfSheep/output/02 - Highest is not best.txt +1 -0
  78. package/config/easy/LeapOfSheep/output/03 - Only 1 valid.txt +1 -0
  79. package/config/easy/LeapOfSheep/output/04 - Increasing then decreasing.txt +1 -0
  80. package/config/easy/LeapOfSheep/output/05 - Hills.txt +1 -0
  81. package/config/easy/LeapOfSheep/output/06 - Symmetric field.txt +1 -0
  82. package/config/easy/LeapOfSheep/output/07 - Fluctuations.txt +1 -0
  83. package/config/easy/LeapOfSheep/output/08 - Small step.txt +1 -0
  84. package/config/easy/LeapOfSheep/output/09 - Big heights.txt +1 -0
  85. package/config/easy/LeapOfSheep/output/10 - So high!.txt +1 -0
  86. package/config/easy/LeapOfSheep/output/11 - Giant leap.txt +1 -0
  87. package/config/easy/LeapOfSheep/output/12 - Bigger.txt +1 -0
  88. package/config/easy/LeapOfSheep/output/13 - Lots of similar.txt +1 -0
  89. package/config/easy/LeapOfSheep/output/14 - Leap of faith.txt +1 -0
  90. package/config/easy/LeapOfSheep/output/15 - Similar heights.txt +1 -0
  91. package/config/easy/LeapOfSheep/output/16 - So many piles.txt +1 -0
  92. package/config/easy/PyramidStacker/code/CGCode.cpp +20 -0
  93. package/config/easy/PyramidStacker/code/CGCode.java +18 -0
  94. package/config/easy/PyramidStacker/code/CGCode.js +9 -0
  95. package/config/easy/PyramidStacker/code/CGCode.php +8 -0
  96. package/config/easy/PyramidStacker/code/CGCode.ts +9 -0
  97. package/config/easy/PyramidStacker/config.json +63 -0
  98. package/config/easy/PyramidStacker/input/01 - Full (Example).txt +2 -0
  99. package/config/easy/PyramidStacker/input/02 - Partial (Example).txt +2 -0
  100. package/config/easy/PyramidStacker/input/03 - One Cube.txt +2 -0
  101. package/config/easy/PyramidStacker/input/04 - Patchy.txt +2 -0
  102. package/config/easy/PyramidStacker/input/05 - Repeat.txt +2 -0
  103. package/config/easy/PyramidStacker/input/06 - Cut.txt +2 -0
  104. package/config/easy/PyramidStacker/input/07 - Full.txt +2 -0
  105. package/config/easy/PyramidStacker/input/08 - Sparse.txt +2 -0
  106. package/config/easy/PyramidStacker/input/09 - Tall.txt +2 -0
  107. package/config/easy/PyramidStacker/input/10 - Limit.txt +2 -0
  108. package/config/easy/PyramidStacker/input/11 - Empty.txt +2 -0
  109. package/config/easy/PyramidStacker/output/01 - Full (Example).txt +3 -0
  110. package/config/easy/PyramidStacker/output/02 - Partial (Example).txt +3 -0
  111. package/config/easy/PyramidStacker/output/03 - One Cube.txt +1 -0
  112. package/config/easy/PyramidStacker/output/04 - Patchy.txt +4 -0
  113. package/config/easy/PyramidStacker/output/05 - Repeat.txt +5 -0
  114. package/config/easy/PyramidStacker/output/06 - Cut.txt +5 -0
  115. package/config/easy/PyramidStacker/output/07 - Full.txt +7 -0
  116. package/config/easy/PyramidStacker/output/08 - Sparse.txt +7 -0
  117. package/config/easy/PyramidStacker/output/09 - Tall.txt +9 -0
  118. package/config/easy/PyramidStacker/output/10 - Limit.txt +10 -0
  119. package/config/easy/PyramidStacker/output/11 - Empty.txt +10 -0
  120. package/config/hard/BuildADie/code/CGCode.cpp +30 -0
  121. package/config/hard/BuildADie/code/CGCode.java +31 -0
  122. package/config/hard/BuildADie/code/CGCode.js +16 -0
  123. package/config/hard/BuildADie/code/CGCode.php +17 -0
  124. package/config/hard/BuildADie/code/CGCode.ts +16 -0
  125. package/config/hard/BuildADie/config.json +133 -0
  126. package/config/hard/BuildADie/input/01 - Example.txt +12 -0
  127. package/config/hard/BuildADie/input/02 - Corners.txt +11 -0
  128. package/config/hard/BuildADie/input/03 - Side Profile.txt +10 -0
  129. package/config/hard/BuildADie/input/04 - Front Face.txt +11 -0
  130. package/config/hard/BuildADie/input/05 - Mix.txt +12 -0
  131. package/config/hard/BuildADie/input/06 - Repeat.txt +11 -0
  132. package/config/hard/BuildADie/input/07 - Cryptic.txt +12 -0
  133. package/config/hard/BuildADie/input/08 - Missing Images.txt +11 -0
  134. package/config/hard/BuildADie/input/09 - No Solution.txt +12 -0
  135. package/config/hard/BuildADie/input/10 - Multiple.txt +12 -0
  136. package/config/hard/BuildADie/input/11 - More.txt +12 -0
  137. package/config/hard/BuildADie/input/12 - Duplicate.txt +13 -0
  138. package/config/hard/BuildADie/input/13 - Identical.txt +11 -0
  139. package/config/hard/BuildADie/input/14 - Net 1.txt +11 -0
  140. package/config/hard/BuildADie/input/15 - Net 2.txt +11 -0
  141. package/config/hard/BuildADie/input/16 - Net 3.txt +11 -0
  142. package/config/hard/BuildADie/input/17 - Net 4.txt +11 -0
  143. package/config/hard/BuildADie/input/18 - Net 5.txt +12 -0
  144. package/config/hard/BuildADie/input/19 - Net 6.txt +11 -0
  145. package/config/hard/BuildADie/input/20 - Net 7.txt +12 -0
  146. package/config/hard/BuildADie/input/21 - Net 8.txt +12 -0
  147. package/config/hard/BuildADie/input/22 - Net 9.txt +11 -0
  148. package/config/hard/BuildADie/input/23 - Net 10.txt +12 -0
  149. package/config/hard/BuildADie/input/24 - Net 11.txt +13 -0
  150. package/config/hard/BuildADie/input/25 - Nothing.txt +12 -0
  151. package/config/hard/BuildADie/output/01 - Example.txt +5 -0
  152. package/config/hard/BuildADie/output/02 - Corners.txt +4 -0
  153. package/config/hard/BuildADie/output/03 - Side Profile.txt +3 -0
  154. package/config/hard/BuildADie/output/04 - Front Face.txt +4 -0
  155. package/config/hard/BuildADie/output/05 - Mix.txt +17 -0
  156. package/config/hard/BuildADie/output/06 - Repeat.txt +19 -0
  157. package/config/hard/BuildADie/output/07 - Cryptic.txt +97 -0
  158. package/config/hard/BuildADie/output/08 - Missing Images.txt +91 -0
  159. package/config/hard/BuildADie/output/09 - No Solution.txt +1 -0
  160. package/config/hard/BuildADie/output/10 - Multiple.txt +25 -0
  161. package/config/hard/BuildADie/output/11 - More.txt +13 -0
  162. package/config/hard/BuildADie/output/12 - Duplicate.txt +6 -0
  163. package/config/hard/BuildADie/output/13 - Identical.txt +4 -0
  164. package/config/hard/BuildADie/output/14 - Net 1.txt +10 -0
  165. package/config/hard/BuildADie/output/15 - Net 2.txt +10 -0
  166. package/config/hard/BuildADie/output/16 - Net 3.txt +10 -0
  167. package/config/hard/BuildADie/output/17 - Net 4.txt +13 -0
  168. package/config/hard/BuildADie/output/18 - Net 5.txt +61 -0
  169. package/config/hard/BuildADie/output/19 - Net 6.txt +13 -0
  170. package/config/hard/BuildADie/output/20 - Net 7.txt +13 -0
  171. package/config/hard/BuildADie/output/21 - Net 8.txt +9 -0
  172. package/config/hard/BuildADie/output/22 - Net 9.txt +25 -0
  173. package/config/hard/BuildADie/output/23 - Net 10.txt +61 -0
  174. package/config/hard/BuildADie/output/24 - Net 11.txt +11 -0
  175. package/config/hard/BuildADie/output/25 - Nothing.txt +1 -0
  176. package/config/hard/XthLexicographicallySmallestNumber/code/CGCode.cpp +20 -0
  177. package/config/hard/XthLexicographicallySmallestNumber/code/CGCode.java +19 -0
  178. package/config/hard/XthLexicographicallySmallestNumber/code/CGCode.js +10 -0
  179. package/config/hard/XthLexicographicallySmallestNumber/code/CGCode.php +7 -0
  180. package/config/hard/XthLexicographicallySmallestNumber/code/CGCode.ts +10 -0
  181. package/config/hard/XthLexicographicallySmallestNumber/config.json +68 -0
  182. package/config/hard/XthLexicographicallySmallestNumber/input/01 - test 1.txt +1 -0
  183. package/config/hard/XthLexicographicallySmallestNumber/input/02 - test 2.txt +1 -0
  184. package/config/hard/XthLexicographicallySmallestNumber/input/03 - test 3.txt +1 -0
  185. package/config/hard/XthLexicographicallySmallestNumber/input/04 - test 4.txt +1 -0
  186. package/config/hard/XthLexicographicallySmallestNumber/input/05 - test 5.txt +1 -0
  187. package/config/hard/XthLexicographicallySmallestNumber/input/06 - test 6.txt +1 -0
  188. package/config/hard/XthLexicographicallySmallestNumber/input/07 - test 7.txt +1 -0
  189. package/config/hard/XthLexicographicallySmallestNumber/input/08 - test 8.txt +1 -0
  190. package/config/hard/XthLexicographicallySmallestNumber/input/09 - test 9.txt +1 -0
  191. package/config/hard/XthLexicographicallySmallestNumber/input/10 - test 10.txt +1 -0
  192. package/config/hard/XthLexicographicallySmallestNumber/input/11 - test 11.txt +1 -0
  193. package/config/hard/XthLexicographicallySmallestNumber/input/12 - test 12.txt +1 -0
  194. package/config/hard/XthLexicographicallySmallestNumber/output/01 - test 1.txt +1 -0
  195. package/config/hard/XthLexicographicallySmallestNumber/output/02 - test 2.txt +1 -0
  196. package/config/hard/XthLexicographicallySmallestNumber/output/03 - test 3.txt +1 -0
  197. package/config/hard/XthLexicographicallySmallestNumber/output/04 - test 4.txt +1 -0
  198. package/config/hard/XthLexicographicallySmallestNumber/output/05 - test 5.txt +1 -0
  199. package/config/hard/XthLexicographicallySmallestNumber/output/06 - test 6.txt +1 -0
  200. package/config/hard/XthLexicographicallySmallestNumber/output/07 - test 7.txt +1 -0
  201. package/config/hard/XthLexicographicallySmallestNumber/output/08 - test 8.txt +1 -0
  202. package/config/hard/XthLexicographicallySmallestNumber/output/09 - test 9.txt +1 -0
  203. package/config/hard/XthLexicographicallySmallestNumber/output/10 - test 10.txt +1 -0
  204. package/config/hard/XthLexicographicallySmallestNumber/output/11 - test 11.txt +1 -0
  205. package/config/hard/XthLexicographicallySmallestNumber/output/12 - test 12.txt +1 -0
  206. package/config/medium/NumbersWithOnlyTwoDistinctDigits/code/CGCode.cpp +20 -0
  207. package/config/medium/NumbersWithOnlyTwoDistinctDigits/code/CGCode.java +18 -0
  208. package/config/medium/NumbersWithOnlyTwoDistinctDigits/code/CGCode.js +9 -0
  209. package/config/medium/NumbersWithOnlyTwoDistinctDigits/code/CGCode.php +8 -0
  210. package/config/medium/NumbersWithOnlyTwoDistinctDigits/code/CGCode.ts +9 -0
  211. package/config/medium/NumbersWithOnlyTwoDistinctDigits/config.json +43 -0
  212. package/config/medium/NumbersWithOnlyTwoDistinctDigits/input/01 - Base case.txt +2 -0
  213. package/config/medium/NumbersWithOnlyTwoDistinctDigits/input/02 - 2 digits long ans.txt +2 -0
  214. package/config/medium/NumbersWithOnlyTwoDistinctDigits/input/03 - With 7.txt +2 -0
  215. package/config/medium/NumbersWithOnlyTwoDistinctDigits/input/04 - With more digits (21).txt +2 -0
  216. package/config/medium/NumbersWithOnlyTwoDistinctDigits/input/05 - Still ok 100 digits!.txt +2 -0
  217. package/config/medium/NumbersWithOnlyTwoDistinctDigits/input/06 - 250 NO WAY!.txt +2 -0
  218. package/config/medium/NumbersWithOnlyTwoDistinctDigits/input/07 - 500.txt +2 -0
  219. package/config/medium/NumbersWithOnlyTwoDistinctDigits/output/01 - Base case.txt +1 -0
  220. package/config/medium/NumbersWithOnlyTwoDistinctDigits/output/02 - 2 digits long ans.txt +1 -0
  221. package/config/medium/NumbersWithOnlyTwoDistinctDigits/output/03 - With 7.txt +1 -0
  222. package/config/medium/NumbersWithOnlyTwoDistinctDigits/output/04 - With more digits (21).txt +1 -0
  223. package/config/medium/NumbersWithOnlyTwoDistinctDigits/output/05 - Still ok 100 digits!.txt +1 -0
  224. package/config/medium/NumbersWithOnlyTwoDistinctDigits/output/06 - 250 NO WAY!.txt +1 -0
  225. package/config/medium/NumbersWithOnlyTwoDistinctDigits/output/07 - 500.txt +1 -0
  226. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.cpp +23 -0
  227. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.java +21 -0
  228. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.js +13 -0
  229. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.php +11 -0
  230. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.ts +13 -0
  231. package/config/medium/OrbitalLogisticsExactLoad/config.json +73 -0
  232. package/config/medium/OrbitalLogisticsExactLoad/input/01 - Baby/342/200/231s First Cargo Run.txt" +5 -0
  233. package/config/medium/OrbitalLogisticsExactLoad/input/02 - The Cargo Bay Says No.txt +5 -0
  234. package/config/medium/OrbitalLogisticsExactLoad/input/03 - All Hands on Deck.txt +8 -0
  235. package/config/medium/OrbitalLogisticsExactLoad/input/04 - Nothing Fits Today.txt +11 -0
  236. package/config/medium/OrbitalLogisticsExactLoad/input/05 - Many Roads to the Same Dock.txt +6 -0
  237. package/config/medium/OrbitalLogisticsExactLoad/input/06 - One Perfect Container.txt +14 -0
  238. package/config/medium/OrbitalLogisticsExactLoad/input/07 - Bigger Beats Better.txt +18 -0
  239. package/config/medium/OrbitalLogisticsExactLoad/input/08 - Many Roads to Orbit.txt +25 -0
  240. package/config/medium/OrbitalLogisticsExactLoad/input/09 - Insufficient Payload.txt +31 -0
  241. package/config/medium/OrbitalLogisticsExactLoad/input/10 - Tight Schedule.txt +33 -0
  242. package/config/medium/OrbitalLogisticsExactLoad/input/11 - Full Capacity Pressure.txt +41 -0
  243. package/config/medium/OrbitalLogisticsExactLoad/input/12 - Deep Space Logistics.txt +41 -0
  244. package/config/medium/OrbitalLogisticsExactLoad/input/13 - Mission Constraints.txt +41 -0
  245. package/config/medium/OrbitalLogisticsExactLoad/output/01 - Baby/342/200/231s First Cargo Run.txt" +1 -0
  246. package/config/medium/OrbitalLogisticsExactLoad/output/02 - The Cargo Bay Says No.txt +1 -0
  247. package/config/medium/OrbitalLogisticsExactLoad/output/03 - All Hands on Deck.txt +1 -0
  248. package/config/medium/OrbitalLogisticsExactLoad/output/04 - Nothing Fits Today.txt +1 -0
  249. package/config/medium/OrbitalLogisticsExactLoad/output/05 - Many Roads to the Same Dock.txt +1 -0
  250. package/config/medium/OrbitalLogisticsExactLoad/output/06 - One Perfect Container.txt +1 -0
  251. package/config/medium/OrbitalLogisticsExactLoad/output/07 - Bigger Beats Better.txt +1 -0
  252. package/config/medium/OrbitalLogisticsExactLoad/output/08 - Many Roads to Orbit.txt +1 -0
  253. package/config/medium/OrbitalLogisticsExactLoad/output/09 - Insufficient Payload.txt +1 -0
  254. package/config/medium/OrbitalLogisticsExactLoad/output/10 - Tight Schedule.txt +1 -0
  255. package/config/medium/OrbitalLogisticsExactLoad/output/11 - Full Capacity Pressure.txt +1 -0
  256. package/config/medium/OrbitalLogisticsExactLoad/output/12 - Deep Space Logistics.txt +1 -0
  257. package/config/medium/OrbitalLogisticsExactLoad/output/13 - Mission Constraints.txt +1 -0
  258. package/config/medium/TheHoleTruth/code/CGCode.cpp +22 -0
  259. package/config/medium/TheHoleTruth/code/CGCode.java +23 -0
  260. package/config/medium/TheHoleTruth/code/CGCode.js +11 -0
  261. package/config/medium/TheHoleTruth/code/CGCode.php +11 -0
  262. package/config/medium/TheHoleTruth/code/CGCode.ts +11 -0
  263. package/config/medium/TheHoleTruth/config.json +58 -0
  264. package/config/medium/TheHoleTruth/input/01 - Simple ring.txt +6 -0
  265. package/config/medium/TheHoleTruth/input/02 - Two holes.txt +6 -0
  266. package/config/medium/TheHoleTruth/input/03 - No holes.txt +6 -0
  267. package/config/medium/TheHoleTruth/input/04 - Nested rings.txt +10 -0
  268. package/config/medium/TheHoleTruth/input/05 - Border-touching shapes.txt +12 -0
  269. package/config/medium/TheHoleTruth/input/06 - Smiley face.txt +13 -0
  270. package/config/medium/TheHoleTruth/input/07 - Tall grid with irregular hole.txt +14 -0
  271. package/config/medium/TheHoleTruth/input/08 - Nested blobs with winding walls.txt +41 -0
  272. package/config/medium/TheHoleTruth/input/09 - Concentric rings and L-shaped enclosures.txt +41 -0
  273. package/config/medium/TheHoleTruth/input/10 - Stress test.txt +58 -0
  274. package/config/medium/TheHoleTruth/output/01 - Simple ring.txt +1 -0
  275. package/config/medium/TheHoleTruth/output/02 - Two holes.txt +1 -0
  276. package/config/medium/TheHoleTruth/output/03 - No holes.txt +1 -0
  277. package/config/medium/TheHoleTruth/output/04 - Nested rings.txt +1 -0
  278. package/config/medium/TheHoleTruth/output/05 - Border-touching shapes.txt +1 -0
  279. package/config/medium/TheHoleTruth/output/06 - Smiley face.txt +1 -0
  280. package/config/medium/TheHoleTruth/output/07 - Tall grid with irregular hole.txt +1 -0
  281. package/config/medium/TheHoleTruth/output/08 - Nested blobs with winding walls.txt +1 -0
  282. package/config/medium/TheHoleTruth/output/09 - Concentric rings and L-shaped enclosures.txt +1 -0
  283. package/config/medium/TheHoleTruth/output/10 - Stress test.txt +1 -0
  284. package/package.json +1 -1
@@ -0,0 +1,41 @@
1
+ 30 40
2
+ ..............................
3
+ ..............................
4
+ ....####....###...###.........
5
+ ...####......###..##..........
6
+ ....#.........###.##..........
7
+ ........#..######.##..........
8
+ .......##############.........
9
+ ....#...####...######.........
10
+ ....##.#####...######.........
11
+ ...#########...#######.....#..
12
+ ....########...##..#########..
13
+ ....########...#...##......#..
14
+ ...#############...##.........
15
+ ..###############..###.#......
16
+ ..################.##.###.....
17
+ ..################.#...#......
18
+ ..##################..###.....
19
+ ..################.#..###.....
20
+ ..###############......###....
21
+ ..################....#####...
22
+ ..###############..#######....
23
+ ..########################....
24
+ ..#######################.....
25
+ ..#######################.....
26
+ ..########################....
27
+ ..#########################...
28
+ ..##############..#.###..##...
29
+ ..##############..#.#.........
30
+ ..##############..#.#.........
31
+ ..##############....#.........
32
+ ..####.#######.######...###...
33
+ ..###..#######..#..##...#.....
34
+ ...#..#######...#..##.#.##....
35
+ ......#.#..#....#..#####......
36
+ ......#.##..........#.#.......
37
+ .....##...............#.......
38
+ ..####................#.......
39
+ ...#.#........................
40
+ ..............................
41
+ ..............................
@@ -0,0 +1,41 @@
1
+ 60 40
2
+ ............................................................
3
+ ............................................................
4
+ ........#........................########.################..
5
+ ........##.......................#########################..
6
+ ......#...................############################.###..
7
+ ......#...................#.....#################...#...#...
8
+ ......#..................###...###################..........
9
+ ......#....#######......#####...####################..#.....
10
+ ......#..................###...#########################....
11
+ ..........................#...##############.############...
12
+ .............................##############..#############..
13
+ ............###...............#############..###..#.######..
14
+ ..............#.....#....#....############.#.###..#.##..##..
15
+ ..............#....##...###..#############...###....##...#..
16
+ ........#######........####################.##########......
17
+ ....#####..#............####..#..######################.....
18
+ ....#......###...........###..#..######################.#...
19
+ ...##............#..########..#..########################...
20
+ ...##..........#.#..#.....##..#..############....#########..
21
+ ...#...........###.........#.....############.#.#########...
22
+ ...............#.........#.###############################..
23
+ ....###.#...............##################################..
24
+ ...#########...........###################################..
25
+ ..###########...........########.######################.##..
26
+ ...####.####.............######...####################...#..
27
+ ..####...#####..........#############################.......
28
+ ..####...###.#...........############################.......
29
+ ...########..#........#...##########################........
30
+ ....######...#........#############################.........
31
+ .....#..#.............#..######################..##.........
32
+ .....#................#...##################..#..##.........
33
+ .....####..........####....#.###############..#####.........
34
+ ..##.#........................##############...#..#.....##..
35
+ .....#.........................####.######.#...#..#.....#...
36
+ ...#.#...........................#...####..#...#..#.....#...
37
+ ...#...........#......................#..###......#.....#...
38
+ ...#...........#..........#................########.....#...
39
+ ...#..........##..........#.............................#...
40
+ ............................................................
41
+ ............................................................
@@ -0,0 +1,58 @@
1
+ 75 57
2
+ ...........................................................................
3
+ ...........................................................................
4
+ ...........#...................#.....#.....................###.#####.#.#...
5
+ ...........#...................#.....#....................###....##..#.##..
6
+ .......#...#...................#.....#...................###.....###.#.#...
7
+ ....####...#......#.................##...................#####...###.#.....
8
+ ...........#.....###........#.####..#.....................#########..#.....
9
+ ...........####.#####......###..###.#.#######..............#######.........
10
+ ...........#...#####......#####...#.#.#..#..#..............###.#...........
11
+ ..............#######......###......#.#.....#..........#.#.##..............
12
+ ..............#########.#####.......#########.........#####.##.............
13
+ .........#...#################.......#.................#.#..#...#..........
14
+ ........###..####..############......##.....................#..###.........
15
+ .......##########...############.#...###.#.#.........#......#...#..........
16
+ .....#..##########...##############.###.#####.#.##...#......#...#....##....
17
+ ....###..########....#############....#..#.########..#...#..#...#...###....
18
+ ...#####..######..#################...#....#.#######.#..###.#.#.#..#.......
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
+ ...........................................................................
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyrilverloop/codingame-configuration",
3
- "version": "1.25.0",
3
+ "version": "1.27.0",
4
4
  "description": "A project that contains CodinGame input, output and default code.",
5
5
  "repository": {
6
6
  "type": "git",