@cyrilverloop/codingame-configuration 1.22.0 → 1.24.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 (412) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/LICENSE +1 -1
  3. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.cpp +19 -0
  4. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.java +18 -0
  5. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.js +8 -0
  6. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.php +9 -0
  7. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.ts +8 -0
  8. package/config/easy/MiniCPUInstructionDecoder/config.json +63 -0
  9. package/config/easy/MiniCPUInstructionDecoder/input/01 - Boot Sequence.txt +1 -0
  10. package/config/easy/MiniCPUInstructionDecoder/input/02 - Multiply Core.txt +1 -0
  11. package/config/easy/MiniCPUInstructionDecoder/input/03 - INC and DEC.txt +1 -0
  12. package/config/easy/MiniCPUInstructionDecoder/input/04 - INC Overflow.txt +1 -0
  13. package/config/easy/MiniCPUInstructionDecoder/input/05 - DEC Underflow.txt +1 -0
  14. package/config/easy/MiniCPUInstructionDecoder/input/06 - ADD Overflow.txt +1 -0
  15. package/config/easy/MiniCPUInstructionDecoder/input/07 - SUB Underflow.txt +1 -0
  16. package/config/easy/MiniCPUInstructionDecoder/input/08 - MUL Overflow.txt +1 -0
  17. package/config/easy/MiniCPUInstructionDecoder/input/09 - Mixed Operations.txt +1 -0
  18. package/config/easy/MiniCPUInstructionDecoder/input/10 - Immediate Halt.txt +1 -0
  19. package/config/easy/MiniCPUInstructionDecoder/input/11 - MOV Overwrite.txt +1 -0
  20. package/config/easy/MiniCPUInstructionDecoder/output/01 - Boot Sequence.txt +4 -0
  21. package/config/easy/MiniCPUInstructionDecoder/output/02 - Multiply Core.txt +4 -0
  22. package/config/easy/MiniCPUInstructionDecoder/output/03 - INC and DEC.txt +4 -0
  23. package/config/easy/MiniCPUInstructionDecoder/output/04 - INC Overflow.txt +4 -0
  24. package/config/easy/MiniCPUInstructionDecoder/output/05 - DEC Underflow.txt +4 -0
  25. package/config/easy/MiniCPUInstructionDecoder/output/06 - ADD Overflow.txt +4 -0
  26. package/config/easy/MiniCPUInstructionDecoder/output/07 - SUB Underflow.txt +4 -0
  27. package/config/easy/MiniCPUInstructionDecoder/output/08 - MUL Overflow.txt +4 -0
  28. package/config/easy/MiniCPUInstructionDecoder/output/09 - Mixed Operations.txt +4 -0
  29. package/config/easy/MiniCPUInstructionDecoder/output/10 - Immediate Halt.txt +4 -0
  30. package/config/easy/MiniCPUInstructionDecoder/output/11 - MOV Overwrite.txt +4 -0
  31. package/config/easy/SimpleDiffTool/code/CGCode.cpp +29 -0
  32. package/config/easy/SimpleDiffTool/code/CGCode.java +30 -0
  33. package/config/easy/SimpleDiffTool/code/CGCode.js +14 -0
  34. package/config/easy/SimpleDiffTool/code/CGCode.php +17 -0
  35. package/config/easy/SimpleDiffTool/code/CGCode.ts +14 -0
  36. package/config/easy/SimpleDiffTool/config.json +78 -0
  37. package/config/easy/SimpleDiffTool/input/01 - Test - Add by content.txt +10 -0
  38. package/config/easy/SimpleDiffTool/input/02 - Test - Add by number.txt +10 -0
  39. package/config/easy/SimpleDiffTool/input/03 - Test - Delete by content.txt +8 -0
  40. package/config/easy/SimpleDiffTool/input/04 - Test - Delete by number.txt +8 -0
  41. package/config/easy/SimpleDiffTool/input/05 - Test - Change by content.txt +9 -0
  42. package/config/easy/SimpleDiffTool/input/06 - Test - Change by number.txt +9 -0
  43. package/config/easy/SimpleDiffTool/input/07 - Test - No diffs by content.txt +9 -0
  44. package/config/easy/SimpleDiffTool/input/08 - Test - No diffs by number.txt +9 -0
  45. package/config/easy/SimpleDiffTool/input/09 - Test - Moved lines by content.txt +9 -0
  46. package/config/easy/SimpleDiffTool/input/10 - Test - Moved lines by number.txt +9 -0
  47. package/config/easy/SimpleDiffTool/input/11 - Test - Multiple diffs by content.txt +24 -0
  48. package/config/easy/SimpleDiffTool/input/12 - Test - Multiple diffs by number.txt +24 -0
  49. package/config/easy/SimpleDiffTool/input/13 - Test - No lines by content.txt +3 -0
  50. package/config/easy/SimpleDiffTool/input/14 - Test - No lines by number.txt +3 -0
  51. package/config/easy/SimpleDiffTool/output/01 - Test - Add by content.txt +1 -0
  52. package/config/easy/SimpleDiffTool/output/02 - Test - Add by number.txt +2 -0
  53. package/config/easy/SimpleDiffTool/output/03 - Test - Delete by content.txt +1 -0
  54. package/config/easy/SimpleDiffTool/output/04 - Test - Delete by number.txt +2 -0
  55. package/config/easy/SimpleDiffTool/output/05 - Test - Change by content.txt +2 -0
  56. package/config/easy/SimpleDiffTool/output/06 - Test - Change by number.txt +1 -0
  57. package/config/easy/SimpleDiffTool/output/07 - Test - No diffs by content.txt +1 -0
  58. package/config/easy/SimpleDiffTool/output/08 - Test - No diffs by number.txt +1 -0
  59. package/config/easy/SimpleDiffTool/output/09 - Test - Moved lines by content.txt +3 -0
  60. package/config/easy/SimpleDiffTool/output/10 - Test - Moved lines by number.txt +3 -0
  61. package/config/easy/SimpleDiffTool/output/11 - Test - Multiple diffs by content.txt +9 -0
  62. package/config/easy/SimpleDiffTool/output/12 - Test - Multiple diffs by number.txt +5 -0
  63. package/config/easy/SimpleDiffTool/output/13 - Test - No lines by content.txt +1 -0
  64. package/config/easy/SimpleDiffTool/output/14 - Test - No lines by number.txt +1 -0
  65. package/config/easy/Snap/code/CGCode.cpp +28 -0
  66. package/config/easy/Snap/code/CGCode.java +24 -0
  67. package/config/easy/Snap/code/CGCode.js +14 -0
  68. package/config/easy/Snap/code/CGCode.php +17 -0
  69. package/config/easy/Snap/code/CGCode.ts +14 -0
  70. package/config/easy/Snap/config.json +93 -0
  71. package/config/easy/Snap/input/01 - Player 1 Win.txt +10 -0
  72. package/config/easy/Snap/input/02 - Player 2 Win.txt +12 -0
  73. package/config/easy/Snap/input/03 - Snapless.txt +22 -0
  74. package/config/easy/Snap/input/04 - Clutch Save.txt +30 -0
  75. package/config/easy/Snap/input/05 - Almost Clutch Save.txt +54 -0
  76. package/config/easy/Snap/input/06 - Quick Game.txt +4 -0
  77. package/config/easy/Snap/input/07 - Very Quick Game.txt +3 -0
  78. package/config/easy/Snap/input/08 - Lucky Shuffle.txt +22 -0
  79. package/config/easy/Snap/input/09 - Unfair Shuffle 1.txt +24 -0
  80. package/config/easy/Snap/input/10 - Unfair Shuffle 2.txt +25 -0
  81. package/config/easy/Snap/input/11 - Unfair Shuffle 3.txt +54 -0
  82. package/config/easy/Snap/input/12 - Standard Deck 1.txt +54 -0
  83. package/config/easy/Snap/input/13 - Standard Deck 2.txt +54 -0
  84. package/config/easy/Snap/input/14 - Standard Deck 3.txt +54 -0
  85. package/config/easy/Snap/input/15 - Standard Deck 4.txt +54 -0
  86. package/config/easy/Snap/input/16 - Standard Deck 5.txt +54 -0
  87. package/config/easy/Snap/input/17 - Standard Deck 6.txt +54 -0
  88. package/config/easy/Snap/output/01 - Player 1 Win.txt +2 -0
  89. package/config/easy/Snap/output/02 - Player 2 Win.txt +2 -0
  90. package/config/easy/Snap/output/03 - Snapless.txt +2 -0
  91. package/config/easy/Snap/output/04 - Clutch Save.txt +2 -0
  92. package/config/easy/Snap/output/05 - Almost Clutch Save.txt +2 -0
  93. package/config/easy/Snap/output/06 - Quick Game.txt +2 -0
  94. package/config/easy/Snap/output/07 - Very Quick Game.txt +2 -0
  95. package/config/easy/Snap/output/08 - Lucky Shuffle.txt +2 -0
  96. package/config/easy/Snap/output/09 - Unfair Shuffle 1.txt +2 -0
  97. package/config/easy/Snap/output/10 - Unfair Shuffle 2.txt +2 -0
  98. package/config/easy/Snap/output/11 - Unfair Shuffle 3.txt +2 -0
  99. package/config/easy/Snap/output/12 - Standard Deck 1.txt +2 -0
  100. package/config/easy/Snap/output/13 - Standard Deck 2.txt +2 -0
  101. package/config/easy/Snap/output/14 - Standard Deck 3.txt +2 -0
  102. package/config/easy/Snap/output/15 - Standard Deck 4.txt +2 -0
  103. package/config/easy/Snap/output/16 - Standard Deck 5.txt +2 -0
  104. package/config/easy/Snap/output/17 - Standard Deck 6.txt +2 -0
  105. package/config/easy/WhatADessert/code/CGCode.cpp +20 -0
  106. package/config/easy/WhatADessert/code/CGCode.java +19 -0
  107. package/config/easy/WhatADessert/code/CGCode.js +10 -0
  108. package/config/easy/WhatADessert/code/CGCode.php +7 -0
  109. package/config/easy/WhatADessert/code/CGCode.ts +10 -0
  110. package/config/easy/WhatADessert/config.json +33 -0
  111. package/config/easy/WhatADessert/input/01 - test 1.txt +1 -0
  112. package/config/easy/WhatADessert/input/02 - test 2.txt +1 -0
  113. package/config/easy/WhatADessert/input/03 - test 3.txt +1 -0
  114. package/config/easy/WhatADessert/input/04 - test 4.txt +1 -0
  115. package/config/easy/WhatADessert/input/05 - test 5.txt +1 -0
  116. package/config/easy/WhatADessert/output/01 - test 1.txt +1 -0
  117. package/config/easy/WhatADessert/output/02 - test 2.txt +1 -0
  118. package/config/easy/WhatADessert/output/03 - test 3.txt +1 -0
  119. package/config/easy/WhatADessert/output/04 - test 4.txt +1 -0
  120. package/config/easy/WhatADessert/output/05 - test 5.txt +1 -0
  121. package/config/{medium → hard}/GuessingDigits/config.json +1 -1
  122. package/config/hard/MountainRange/code/CGCode.cpp +22 -0
  123. package/config/hard/MountainRange/code/CGCode.java +23 -0
  124. package/config/hard/MountainRange/code/CGCode.js +11 -0
  125. package/config/hard/MountainRange/code/CGCode.php +11 -0
  126. package/config/hard/MountainRange/code/CGCode.ts +11 -0
  127. package/config/hard/MountainRange/config.json +123 -0
  128. package/config/hard/MountainRange/input/01 - Two summits.txt +7 -0
  129. package/config/hard/MountainRange/input/02 - Close summits.txt +7 -0
  130. package/config/hard/MountainRange/input/03 - Row of 11 peaks.txt +3 -0
  131. package/config/hard/MountainRange/input/04 - Two ridges.txt +13 -0
  132. package/config/hard/MountainRange/input/05 - Flat summits.txt +8 -0
  133. package/config/hard/MountainRange/input/06 - Aligned mountains.txt +16 -0
  134. package/config/hard/MountainRange/input/07 - Aligned valleys.txt +19 -0
  135. package/config/hard/MountainRange/input/08 - Intersecting ridges.txt +9 -0
  136. package/config/hard/MountainRange/input/09 - Nested mountains.txt +11 -0
  137. package/config/hard/MountainRange/input/10 - 8 + 8 + 6 + 6.txt +9 -0
  138. package/config/hard/MountainRange/input/11 - Partially hidden summit.txt +6 -0
  139. package/config/hard/MountainRange/input/12 - Test case of User123.txt +11 -0
  140. package/config/hard/MountainRange/input/13 - Two in front of three.txt +8 -0
  141. package/config/hard/MountainRange/input/14 - Two in front of one big mountain.txt +11 -0
  142. package/config/hard/MountainRange/input/15 - Four in front of one flat summit.txt +8 -0
  143. package/config/hard/MountainRange/input/16 - 8 pointed summits + 1 flat.txt +12 -0
  144. package/config/hard/MountainRange/input/17 - 2 + 3 + 2 + 3 + 2 + 2 + 2 + 2.txt +25 -0
  145. package/config/hard/MountainRange/input/18 - One in front of three.txt +12 -0
  146. package/config/hard/MountainRange/input/19 - Peak, flat summit, hidden slope.txt +9 -0
  147. package/config/hard/MountainRange/input/20 - Three summits, one hidden slope.txt +14 -0
  148. package/config/hard/MountainRange/input/21 - Two pairs.txt +8 -0
  149. package/config/hard/MountainRange/input/22 - 4 + 3 + 4 + 3 + 1 + 1.txt +14 -0
  150. package/config/hard/MountainRange/input/23 - 4 + 3 + 2 + 3 + 1 + 3 + 1 + 1.txt +14 -0
  151. package/config/hard/MountainRange/output/03 - Row of 11 peaks.txt +1 -0
  152. package/config/hard/MountainRange/output/04 - Two ridges.txt +1 -0
  153. package/config/hard/MountainRange/output/07 - Aligned valleys.txt +1 -0
  154. package/config/hard/MountainRange/output/08 - Intersecting ridges.txt +1 -0
  155. package/config/hard/MountainRange/output/09 - Nested mountains.txt +1 -0
  156. package/config/hard/MountainRange/output/10 - 8 + 8 + 6 + 6.txt +1 -0
  157. package/config/hard/MountainRange/output/11 - Partially hidden summit.txt +1 -0
  158. package/config/hard/MountainRange/output/12 - Test case of User123.txt +1 -0
  159. package/config/hard/MountainRange/output/13 - Two in front of three.txt +1 -0
  160. package/config/hard/MountainRange/output/14 - Two in front of one big mountain.txt +1 -0
  161. package/config/hard/MountainRange/output/15 - Four in front of one flat summit.txt +1 -0
  162. package/config/hard/MountainRange/output/16 - 8 pointed summits + 1 flat.txt +1 -0
  163. package/config/hard/MountainRange/output/17 - 2 + 3 + 2 + 3 + 2 + 2 + 2 + 2.txt +1 -0
  164. package/config/hard/MountainRange/output/19 - Peak, flat summit, hidden slope.txt +1 -0
  165. package/config/hard/MountainRange/output/20 - Three summits, one hidden slope.txt +1 -0
  166. package/config/hard/MountainRange/output/21 - Two pairs.txt +1 -0
  167. package/config/hard/MountainRange/output/22 - 4 + 3 + 4 + 3 + 1 + 1.txt +1 -0
  168. package/config/hard/MountainRange/output/23 - 4 + 3 + 2 + 3 + 1 + 3 + 1 + 1.txt +1 -0
  169. package/config/{medium → hard}/ParseSQLQueries/config.json +1 -1
  170. package/config/{expert → hard}/RecurringDecimals/config.json +1 -1
  171. package/config/{medium → hard}/Surakarta/config.json +1 -1
  172. package/config/hard/Surakarta/output/02 - multiple ways.txt +1 -0
  173. package/config/hard/Surakarta/output/04 - pass on yourself.txt +1 -0
  174. package/config/hard/Surakarta/output/05 - angles are not OK.txt +1 -0
  175. package/config/hard/Surakarta/output/07 - it works.txt +1 -0
  176. package/config/hard/Surakarta/output/10 - real test.txt +1 -0
  177. package/config/medium/DistinctCircularLinkedLists/code/CGCode.cpp +21 -0
  178. package/config/medium/DistinctCircularLinkedLists/code/CGCode.java +19 -0
  179. package/config/medium/DistinctCircularLinkedLists/code/CGCode.js +9 -0
  180. package/config/medium/DistinctCircularLinkedLists/code/CGCode.php +11 -0
  181. package/config/medium/DistinctCircularLinkedLists/code/CGCode.ts +9 -0
  182. package/config/medium/DistinctCircularLinkedLists/config.json +103 -0
  183. package/config/medium/DistinctCircularLinkedLists/input/01 - Example.txt +4 -0
  184. package/config/medium/DistinctCircularLinkedLists/input/02 - Random Nodes.txt +5 -0
  185. package/config/medium/DistinctCircularLinkedLists/input/03 - More Nodes.txt +8 -0
  186. package/config/medium/DistinctCircularLinkedLists/input/04 - Just One.txt +2 -0
  187. package/config/medium/DistinctCircularLinkedLists/input/05 - Even More Nodes.txt +10 -0
  188. package/config/medium/DistinctCircularLinkedLists/input/06 - Repeated Nodes.txt +6 -0
  189. package/config/medium/DistinctCircularLinkedLists/input/07 - Multiple Repeating Nodes.txt +9 -0
  190. package/config/medium/DistinctCircularLinkedLists/input/08 - Just One Again.txt +10 -0
  191. package/config/medium/DistinctCircularLinkedLists/input/09 - Good Pairing.txt +9 -0
  192. package/config/medium/DistinctCircularLinkedLists/input/10 - More Nodes 2.txt +13 -0
  193. package/config/medium/DistinctCircularLinkedLists/input/11 - Similar CLLs.txt +17 -0
  194. package/config/medium/DistinctCircularLinkedLists/input/12 - Even More Nodes 2.txt +31 -0
  195. package/config/medium/DistinctCircularLinkedLists/input/13 - Large CLLs.txt +61 -0
  196. package/config/medium/DistinctCircularLinkedLists/input/14 - Many Different Nodes.txt +101 -0
  197. package/config/medium/DistinctCircularLinkedLists/input/15 - Node Spam.txt +497 -0
  198. package/config/medium/DistinctCircularLinkedLists/input/16 - More Node Spam.txt +1000 -0
  199. package/config/medium/DistinctCircularLinkedLists/input/17 - Very Similar CLLs.txt +1985 -0
  200. package/config/medium/DistinctCircularLinkedLists/input/18 - Too Similar CLLs.txt +3361 -0
  201. package/config/medium/DistinctCircularLinkedLists/input/19 - Absolute Limit.txt +3997 -0
  202. package/config/medium/DistinctCircularLinkedLists/output/01 - Example.txt +1 -0
  203. package/config/medium/DistinctCircularLinkedLists/output/02 - Random Nodes.txt +1 -0
  204. package/config/medium/DistinctCircularLinkedLists/output/03 - More Nodes.txt +1 -0
  205. package/config/medium/DistinctCircularLinkedLists/output/04 - Just One.txt +1 -0
  206. package/config/medium/DistinctCircularLinkedLists/output/05 - Even More Nodes.txt +1 -0
  207. package/config/medium/DistinctCircularLinkedLists/output/06 - Repeated Nodes.txt +1 -0
  208. package/config/medium/DistinctCircularLinkedLists/output/07 - Multiple Repeating Nodes.txt +1 -0
  209. package/config/medium/DistinctCircularLinkedLists/output/08 - Just One Again.txt +1 -0
  210. package/config/medium/DistinctCircularLinkedLists/output/09 - Good Pairing.txt +1 -0
  211. package/config/medium/DistinctCircularLinkedLists/output/10 - More Nodes 2.txt +1 -0
  212. package/config/medium/DistinctCircularLinkedLists/output/11 - Similar CLLs.txt +1 -0
  213. package/config/medium/DistinctCircularLinkedLists/output/12 - Even More Nodes 2.txt +1 -0
  214. package/config/medium/DistinctCircularLinkedLists/output/13 - Large CLLs.txt +1 -0
  215. package/config/medium/DistinctCircularLinkedLists/output/14 - Many Different Nodes.txt +1 -0
  216. package/config/medium/DistinctCircularLinkedLists/output/15 - Node Spam.txt +1 -0
  217. package/config/medium/DistinctCircularLinkedLists/output/16 - More Node Spam.txt +1 -0
  218. package/config/medium/DistinctCircularLinkedLists/output/17 - Very Similar CLLs.txt +1 -0
  219. package/config/medium/DistinctCircularLinkedLists/output/18 - Too Similar CLLs.txt +1 -0
  220. package/config/medium/DistinctCircularLinkedLists/output/19 - Absolute Limit.txt +1 -0
  221. package/config/{easy → medium}/NoMorePythonsPlease/config.json +1 -1
  222. package/config/medium/PolygonEquilibrium/code/CGCode.cpp +23 -0
  223. package/config/medium/PolygonEquilibrium/code/CGCode.java +21 -0
  224. package/config/medium/PolygonEquilibrium/code/CGCode.js +12 -0
  225. package/config/medium/PolygonEquilibrium/code/CGCode.php +12 -0
  226. package/config/medium/PolygonEquilibrium/code/CGCode.ts +12 -0
  227. package/config/medium/PolygonEquilibrium/config.json +73 -0
  228. package/config/medium/PolygonEquilibrium/input/01 - Simple triangle.txt +4 -0
  229. package/config/medium/PolygonEquilibrium/input/02 - Tipping triangle.txt +4 -0
  230. package/config/medium/PolygonEquilibrium/input/03 - Trapezoid.txt +5 -0
  231. package/config/medium/PolygonEquilibrium/input/04 - Regular Octogon.txt +9 -0
  232. package/config/medium/PolygonEquilibrium/input/05 - An L-shape.txt +7 -0
  233. package/config/medium/PolygonEquilibrium/input/06 - A T-shape.txt +9 -0
  234. package/config/medium/PolygonEquilibrium/input/07 - test 7.txt +12 -0
  235. package/config/medium/PolygonEquilibrium/input/08 - test 8.txt +18 -0
  236. package/config/medium/PolygonEquilibrium/input/09 - Centroid outside of polygon.txt +19 -0
  237. package/config/medium/PolygonEquilibrium/input/10 - Multiple vertices supporting segment.txt +7 -0
  238. package/config/medium/PolygonEquilibrium/input/11 - Weird shape.txt +12 -0
  239. package/config/medium/PolygonEquilibrium/input/12 - Barely balanced.txt +5 -0
  240. package/config/medium/PolygonEquilibrium/input/13 - CG.txt +43 -0
  241. package/config/medium/PolygonEquilibrium/output/01 - Simple triangle.txt +2 -0
  242. package/config/medium/PolygonEquilibrium/output/02 - Tipping triangle.txt +2 -0
  243. package/config/medium/PolygonEquilibrium/output/03 - Trapezoid.txt +2 -0
  244. package/config/medium/PolygonEquilibrium/output/04 - Regular Octogon.txt +2 -0
  245. package/config/medium/PolygonEquilibrium/output/05 - An L-shape.txt +2 -0
  246. package/config/medium/PolygonEquilibrium/output/06 - A T-shape.txt +2 -0
  247. package/config/medium/PolygonEquilibrium/output/07 - test 7.txt +2 -0
  248. package/config/medium/PolygonEquilibrium/output/08 - test 8.txt +2 -0
  249. package/config/medium/PolygonEquilibrium/output/09 - Centroid outside of polygon.txt +2 -0
  250. package/config/medium/PolygonEquilibrium/output/10 - Multiple vertices supporting segment.txt +2 -0
  251. package/config/medium/PolygonEquilibrium/output/11 - Weird shape.txt +2 -0
  252. package/config/medium/PolygonEquilibrium/output/12 - Barely balanced.txt +2 -0
  253. package/config/medium/PolygonEquilibrium/output/13 - CG.txt +2 -0
  254. package/config/medium/SantasGarland/code/CGCode.cpp +27 -0
  255. package/config/medium/SantasGarland/code/CGCode.java +24 -0
  256. package/config/medium/SantasGarland/code/CGCode.js +17 -0
  257. package/config/medium/SantasGarland/code/CGCode.php +12 -0
  258. package/config/medium/SantasGarland/code/CGCode.ts +17 -0
  259. package/config/medium/SantasGarland/config.json +68 -0
  260. package/config/medium/SantasGarland/input/01 - Simple Path.txt +4 -0
  261. package/config/medium/SantasGarland/input/02 - Disconnected.txt +4 -0
  262. package/config/medium/SantasGarland/input/03 - Triangle with Alternative Path.txt +6 -0
  263. package/config/medium/SantasGarland/input/04 - Hexagon Bad Diagonal.txt +9 -0
  264. package/config/medium/SantasGarland/input/05 - Mid-failure with Bypass.txt +11 -0
  265. package/config/medium/SantasGarland/input/06 - Hub Blocked (different path lengths).txt +11 -0
  266. package/config/medium/SantasGarland/input/07 - Shortcut vs Two Detours.txt +12 -0
  267. package/config/medium/SantasGarland/input/08 - Grid Traversal.txt +14 -0
  268. package/config/medium/SantasGarland/input/09 - Fuses Blow at Final Step.txt +6 -0
  269. package/config/medium/SantasGarland/input/10 - Circle Complete Graph.txt +82 -0
  270. package/config/medium/SantasGarland/input/11 - Hamiltonian 10x10 Grid.txt +102 -0
  271. package/config/medium/SantasGarland/input/12 - Triple Path Challenge.txt +102 -0
  272. package/config/medium/SantasGarland/output/01 - Simple Path.txt +1 -0
  273. package/config/medium/SantasGarland/output/02 - Disconnected.txt +1 -0
  274. package/config/medium/SantasGarland/output/03 - Triangle with Alternative Path.txt +1 -0
  275. package/config/medium/SantasGarland/output/04 - Hexagon Bad Diagonal.txt +1 -0
  276. package/config/medium/SantasGarland/output/05 - Mid-failure with Bypass.txt +1 -0
  277. package/config/medium/SantasGarland/output/06 - Hub Blocked (different path lengths).txt +1 -0
  278. package/config/medium/SantasGarland/output/07 - Shortcut vs Two Detours.txt +1 -0
  279. package/config/medium/SantasGarland/output/08 - Grid Traversal.txt +1 -0
  280. package/config/medium/SantasGarland/output/09 - Fuses Blow at Final Step.txt +1 -0
  281. package/config/medium/SantasGarland/output/10 - Circle Complete Graph.txt +1 -0
  282. package/config/medium/SantasGarland/output/11 - Hamiltonian 10x10 Grid.txt +1 -0
  283. package/config/medium/SantasGarland/output/12 - Triple Path Challenge.txt +1 -0
  284. package/config/{easy → medium}/TheAlienBusinessOfCows/config.json +1 -1
  285. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.cpp +18 -0
  286. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.java +17 -0
  287. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.js +8 -0
  288. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.php +7 -0
  289. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.ts +8 -0
  290. package/config/medium/TheQueensTrekWythoffsGame/config.json +63 -0
  291. package/config/medium/TheQueensTrekWythoffsGame/input/01 - empty piles.txt +1 -0
  292. package/config/medium/TheQueensTrekWythoffsGame/input/02 - 1 move - pile 1 empty.txt +1 -0
  293. package/config/medium/TheQueensTrekWythoffsGame/input/03 - 1 move - pile 2 empty.txt +1 -0
  294. package/config/medium/TheQueensTrekWythoffsGame/input/04 - 1 move - 2 piles.txt +1 -0
  295. package/config/medium/TheQueensTrekWythoffsGame/input/05 - Simple one.txt +1 -0
  296. package/config/medium/TheQueensTrekWythoffsGame/input/06 - First win - 1.txt +1 -0
  297. package/config/medium/TheQueensTrekWythoffsGame/input/07 - Second win - 1.txt +1 -0
  298. package/config/medium/TheQueensTrekWythoffsGame/input/08 - First win - 2.txt +1 -0
  299. package/config/medium/TheQueensTrekWythoffsGame/input/09 - Second win - 2.txt +1 -0
  300. package/config/medium/TheQueensTrekWythoffsGame/input/10 - First win - 3.txt +1 -0
  301. package/config/medium/TheQueensTrekWythoffsGame/input/11 - Second win - 3.txt +1 -0
  302. package/config/medium/TheQueensTrekWythoffsGame/output/01 - empty piles.txt +1 -0
  303. package/config/medium/TheQueensTrekWythoffsGame/output/02 - 1 move - pile 1 empty.txt +1 -0
  304. package/config/medium/TheQueensTrekWythoffsGame/output/03 - 1 move - pile 2 empty.txt +1 -0
  305. package/config/medium/TheQueensTrekWythoffsGame/output/04 - 1 move - 2 piles.txt +1 -0
  306. package/config/medium/TheQueensTrekWythoffsGame/output/05 - Simple one.txt +1 -0
  307. package/config/medium/TheQueensTrekWythoffsGame/output/06 - First win - 1.txt +1 -0
  308. package/config/medium/TheQueensTrekWythoffsGame/output/07 - Second win - 1.txt +1 -0
  309. package/config/medium/TheQueensTrekWythoffsGame/output/08 - First win - 2.txt +1 -0
  310. package/config/medium/TheQueensTrekWythoffsGame/output/09 - Second win - 2.txt +1 -0
  311. package/config/medium/TheQueensTrekWythoffsGame/output/10 - First win - 3.txt +1 -0
  312. package/config/medium/TheQueensTrekWythoffsGame/output/11 - Second win - 3.txt +1 -0
  313. package/package.json +1 -1
  314. /package/config/{medium → hard}/GuessingDigits/code/CGCode.js +0 -0
  315. /package/config/{medium → hard}/GuessingDigits/code/CGCode.php +0 -0
  316. /package/config/{medium → hard}/GuessingDigits/input/01 - test 1.txt +0 -0
  317. /package/config/{medium → hard}/GuessingDigits/input/02 - test 2.txt +0 -0
  318. /package/config/{medium → hard}/GuessingDigits/input/03 - test 3.txt +0 -0
  319. /package/config/{medium → hard}/GuessingDigits/input/04 - test 4.txt +0 -0
  320. /package/config/{medium → hard}/GuessingDigits/input/05 - test 5.txt +0 -0
  321. /package/config/{medium → hard}/GuessingDigits/input/06 - test 6.txt +0 -0
  322. /package/config/{medium → hard}/GuessingDigits/input/07 - test 7.txt +0 -0
  323. /package/config/{medium → hard}/GuessingDigits/input/08 - test 8.txt +0 -0
  324. /package/config/{medium → hard}/GuessingDigits/output/01 - test 1.txt +0 -0
  325. /package/config/{medium → hard}/GuessingDigits/output/02 - test 2.txt +0 -0
  326. /package/config/{medium → hard}/GuessingDigits/output/03 - test 3.txt +0 -0
  327. /package/config/{medium → hard}/GuessingDigits/output/04 - test 4.txt +0 -0
  328. /package/config/{medium → hard}/GuessingDigits/output/05 - test 5.txt +0 -0
  329. /package/config/{medium → hard}/GuessingDigits/output/06 - test 6.txt +0 -0
  330. /package/config/{medium → hard}/GuessingDigits/output/07 - test 7.txt +0 -0
  331. /package/config/{medium → hard}/GuessingDigits/output/08 - test 8.txt +0 -0
  332. /package/config/{medium/Surakarta/output/05 - angles are not OK.txt → hard/MountainRange/output/01 - Two summits.txt} +0 -0
  333. /package/config/{medium/Surakarta/output/02 - multiple ways.txt → hard/MountainRange/output/02 - Close summits.txt} +0 -0
  334. /package/config/{medium/Surakarta/output/07 - it works.txt → hard/MountainRange/output/05 - Flat summits.txt} +0 -0
  335. /package/config/{medium/Surakarta/output/10 - real test.txt → hard/MountainRange/output/06 - Aligned mountains.txt} +0 -0
  336. /package/config/{medium/Surakarta/output/04 - pass on yourself.txt → hard/MountainRange/output/18 - One in front of three.txt} +0 -0
  337. /package/config/{medium → hard}/ParseSQLQueries/code/CGCode.js +0 -0
  338. /package/config/{medium → hard}/ParseSQLQueries/code/CGCode.php +0 -0
  339. /package/config/{medium → hard}/ParseSQLQueries/input/01 - select all.txt +0 -0
  340. /package/config/{medium → hard}/ParseSQLQueries/input/02 - Select from where.txt +0 -0
  341. /package/config/{medium → hard}/ParseSQLQueries/input/03 - Order by ascending.txt +0 -0
  342. /package/config/{medium → hard}/ParseSQLQueries/input/04 - Order by descending.txt +0 -0
  343. /package/config/{medium → hard}/ParseSQLQueries/input/05 - Slightly more advanced.txt +0 -0
  344. /package/config/{medium → hard}/ParseSQLQueries/output/01 - select all.txt +0 -0
  345. /package/config/{medium → hard}/ParseSQLQueries/output/02 - Select from where.txt +0 -0
  346. /package/config/{medium → hard}/ParseSQLQueries/output/03 - Order by ascending.txt +0 -0
  347. /package/config/{medium → hard}/ParseSQLQueries/output/04 - Order by descending.txt +0 -0
  348. /package/config/{medium → hard}/ParseSQLQueries/output/05 - Slightly more advanced.txt +0 -0
  349. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.cpp +0 -0
  350. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.java +0 -0
  351. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.js +0 -0
  352. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.php +0 -0
  353. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.ts +0 -0
  354. /package/config/{expert → hard}/RecurringDecimals/input/01 - Small Terminating.txt +0 -0
  355. /package/config/{expert → hard}/RecurringDecimals/input/02 - Medium Terminating.txt +0 -0
  356. /package/config/{expert → hard}/RecurringDecimals/input/03 - Large Terminating.txt +0 -0
  357. /package/config/{expert → hard}/RecurringDecimals/input/04 - Small Non-Terminating.txt +0 -0
  358. /package/config/{expert → hard}/RecurringDecimals/input/05 - Medium Non-Terminating.txt +0 -0
  359. /package/config/{expert → hard}/RecurringDecimals/input/06 - Large Non Terminating.txt +0 -0
  360. /package/config/{expert → hard}/RecurringDecimals/input/07 - Small Mixed.txt +0 -0
  361. /package/config/{expert → hard}/RecurringDecimals/input/08 - Large Mixed.txt +0 -0
  362. /package/config/{expert → hard}/RecurringDecimals/input/09 - Test 9.txt +0 -0
  363. /package/config/{expert → hard}/RecurringDecimals/output/01 - Small Terminating.txt +0 -0
  364. /package/config/{expert → hard}/RecurringDecimals/output/02 - Medium Terminating.txt +0 -0
  365. /package/config/{expert → hard}/RecurringDecimals/output/03 - Large Terminating.txt +0 -0
  366. /package/config/{expert → hard}/RecurringDecimals/output/04 - Small Non-Terminating.txt +0 -0
  367. /package/config/{expert → hard}/RecurringDecimals/output/05 - Medium Non-Terminating.txt +0 -0
  368. /package/config/{expert → hard}/RecurringDecimals/output/06 - Large Non Terminating.txt +0 -0
  369. /package/config/{expert → hard}/RecurringDecimals/output/07 - Small Mixed.txt +0 -0
  370. /package/config/{expert → hard}/RecurringDecimals/output/08 - Large Mixed.txt +0 -0
  371. /package/config/{expert → hard}/RecurringDecimals/output/09 - Test 9.txt +0 -0
  372. /package/config/{medium → hard}/Surakarta/code/CGCode.js +0 -0
  373. /package/config/{medium → hard}/Surakarta/code/CGCode.php +0 -0
  374. /package/config/{medium → hard}/Surakarta/input/01 - around the world.txt +0 -0
  375. /package/config/{medium → hard}/Surakarta/input/02 - multiple ways.txt +0 -0
  376. /package/config/{medium → hard}/Surakarta/input/03 - impossible.txt +0 -0
  377. /package/config/{medium → hard}/Surakarta/input/04 - pass on yourself.txt +0 -0
  378. /package/config/{medium → hard}/Surakarta/input/05 - angles are not OK.txt +0 -0
  379. /package/config/{medium → hard}/Surakarta/input/06 - we have a problem.txt +0 -0
  380. /package/config/{medium → hard}/Surakarta/input/07 - it works.txt +0 -0
  381. /package/config/{medium → hard}/Surakarta/input/08 - number test.txt +0 -0
  382. /package/config/{medium → hard}/Surakarta/input/09 - crossway.txt +0 -0
  383. /package/config/{medium → hard}/Surakarta/input/10 - real test.txt +0 -0
  384. /package/config/{medium → hard}/Surakarta/output/01 - around the world.txt +0 -0
  385. /package/config/{medium → hard}/Surakarta/output/03 - impossible.txt +0 -0
  386. /package/config/{medium → hard}/Surakarta/output/06 - we have a problem.txt +0 -0
  387. /package/config/{medium → hard}/Surakarta/output/08 - number test.txt +0 -0
  388. /package/config/{medium → hard}/Surakarta/output/09 - crossway.txt +0 -0
  389. /package/config/{easy → medium}/NoMorePythonsPlease/code/CGCode.js +0 -0
  390. /package/config/{easy → medium}/NoMorePythonsPlease/code/CGCode.php +0 -0
  391. /package/config/{easy → medium}/NoMorePythonsPlease/input/01 - easy (one snake).txt +0 -0
  392. /package/config/{easy → medium}/NoMorePythonsPlease/input/02 - medium 1 (3 snakes, one pattern).txt +0 -0
  393. /package/config/{easy → medium}/NoMorePythonsPlease/input/03 - medium 2 (more than 1 large snake).txt +0 -0
  394. /package/config/{easy → medium}/NoMorePythonsPlease/input/04 - hard (one VERY large snake).txt +0 -0
  395. /package/config/{easy → medium}/NoMorePythonsPlease/input/05 - snake madness (for geeks).txt +0 -0
  396. /package/config/{easy → medium}/NoMorePythonsPlease/output/01 - easy (one snake).txt +0 -0
  397. /package/config/{easy → medium}/NoMorePythonsPlease/output/02 - medium 1 (3 snakes, one pattern).txt +0 -0
  398. /package/config/{easy → medium}/NoMorePythonsPlease/output/03 - medium 2 (more than 1 large snake).txt +0 -0
  399. /package/config/{easy → medium}/NoMorePythonsPlease/output/04 - hard (one VERY large snake).txt +0 -0
  400. /package/config/{easy → medium}/NoMorePythonsPlease/output/05 - snake madness (for geeks).txt +0 -0
  401. /package/config/{easy → medium}/TheAlienBusinessOfCows/code/CGCode.js +0 -0
  402. /package/config/{easy → medium}/TheAlienBusinessOfCows/code/CGCode.php +0 -0
  403. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/01 - United Steak of America.txt +0 -0
  404. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/02 - Free Tacow !.txt +0 -0
  405. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/03 - Is that a Mowse.txt +0 -0
  406. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/04 - Those missions are stupid.txt +0 -0
  407. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/05 - Union of Steak Amateurs.txt +0 -0
  408. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/01 - United Steak of America.txt +0 -0
  409. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/02 - Free Tacow !.txt +0 -0
  410. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/03 - Is that a Mowse.txt +0 -0
  411. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/04 - Those missions are stupid.txt +0 -0
  412. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/05 - Union of Steak Amateurs.txt +0 -0
@@ -0,0 +1,9 @@
1
+ 6 7
2
+ 0 3
3
+ 0 2 1
4
+ 2 3 10
5
+ 0 1 8
6
+ 1 2 12
7
+ 0 5 10
8
+ 5 4 15
9
+ 4 3 9
@@ -0,0 +1,11 @@
1
+ 8 9
2
+ 0 7
3
+ 0 1 10
4
+ 1 2 10
5
+ 2 3 3
6
+ 3 4 10
7
+ 4 5 10
8
+ 5 6 10
9
+ 6 7 10
10
+ 2 4 10
11
+ 2 5 12
@@ -0,0 +1,11 @@
1
+ 8 9
2
+ 0 4
3
+ 0 7 1
4
+ 7 4 1
5
+ 0 1 9
6
+ 1 2 12
7
+ 2 3 8
8
+ 3 4 15
9
+ 0 6 10
10
+ 6 5 14
11
+ 5 4 7
@@ -0,0 +1,12 @@
1
+ 9 10
2
+ 0 5
3
+ 0 1 1
4
+ 1 5 8
5
+ 0 2 12
6
+ 2 3 9
7
+ 3 4 15
8
+ 4 5 7
9
+ 0 6 11
10
+ 6 7 14
11
+ 7 8 10
12
+ 8 5 8
@@ -0,0 +1,14 @@
1
+ 9 12
2
+ 0 8
3
+ 0 1 10
4
+ 1 2 12
5
+ 1 4 9
6
+ 2 5 15
7
+ 4 5 8
8
+ 4 7 14
9
+ 5 8 11
10
+ 7 8 7
11
+ 2 4 16
12
+ 5 7 10
13
+ 3 2 5
14
+ 6 7 5
@@ -0,0 +1,6 @@
1
+ 4 4
2
+ 0 3
3
+ 0 1 2
4
+ 1 2 10
5
+ 2 3 10
6
+ 0 2 1
@@ -0,0 +1,82 @@
1
+ 14 80
2
+ 0 7
3
+ 0 1 12
4
+ 1 2 15
5
+ 2 3 11
6
+ 3 4 18
7
+ 4 5 14
8
+ 5 6 16
9
+ 6 7 13
10
+ 7 8 17
11
+ 8 9 10
12
+ 9 10 19
13
+ 10 11 12
14
+ 11 12 15
15
+ 12 13 14
16
+ 13 0 11
17
+ 0 2 1
18
+ 0 3 1
19
+ 0 4 1
20
+ 0 5 1
21
+ 0 6 1
22
+ 0 8 1
23
+ 0 9 1
24
+ 0 10 1
25
+ 0 11 1
26
+ 0 12 1
27
+ 1 3 1
28
+ 1 4 1
29
+ 1 5 1
30
+ 1 6 1
31
+ 1 8 1
32
+ 1 9 1
33
+ 1 10 1
34
+ 1 11 1
35
+ 1 12 1
36
+ 1 13 1
37
+ 2 4 1
38
+ 2 5 1
39
+ 2 6 1
40
+ 2 8 1
41
+ 2 9 1
42
+ 2 10 1
43
+ 2 11 1
44
+ 2 12 1
45
+ 2 13 1
46
+ 3 5 1
47
+ 3 6 1
48
+ 3 8 1
49
+ 3 9 1
50
+ 3 10 1
51
+ 3 11 1
52
+ 3 12 1
53
+ 3 13 1
54
+ 4 6 1
55
+ 4 8 1
56
+ 4 9 1
57
+ 4 10 1
58
+ 4 11 1
59
+ 4 12 1
60
+ 4 13 1
61
+ 5 8 1
62
+ 5 9 1
63
+ 5 10 1
64
+ 5 11 1
65
+ 5 12 1
66
+ 5 13 1
67
+ 6 8 1
68
+ 6 9 1
69
+ 6 10 1
70
+ 6 11 1
71
+ 6 12 1
72
+ 6 13 1
73
+ 8 10 1
74
+ 8 11 1
75
+ 8 12 1
76
+ 8 13 1
77
+ 9 11 1
78
+ 9 12 1
79
+ 9 13 1
80
+ 10 12 1
81
+ 10 13 1
82
+ 11 13 1
@@ -0,0 +1,102 @@
1
+ 100 100
2
+ 0 90
3
+ 0 1 100
4
+ 1 2 100
5
+ 2 3 100
6
+ 3 4 100
7
+ 4 5 100
8
+ 5 6 100
9
+ 6 7 100
10
+ 7 8 100
11
+ 8 9 100
12
+ 9 19 100
13
+ 19 18 100
14
+ 18 17 100
15
+ 17 16 100
16
+ 16 15 100
17
+ 15 14 100
18
+ 14 13 100
19
+ 13 12 100
20
+ 12 11 100
21
+ 11 10 100
22
+ 10 20 100
23
+ 20 21 100
24
+ 21 22 100
25
+ 22 23 100
26
+ 23 24 100
27
+ 24 25 100
28
+ 25 26 100
29
+ 26 27 100
30
+ 27 28 100
31
+ 28 29 100
32
+ 29 39 100
33
+ 39 38 100
34
+ 38 37 100
35
+ 37 36 100
36
+ 36 35 100
37
+ 35 34 100
38
+ 34 33 100
39
+ 33 32 100
40
+ 32 31 100
41
+ 31 30 100
42
+ 30 40 100
43
+ 40 41 100
44
+ 41 42 100
45
+ 42 43 100
46
+ 43 44 100
47
+ 44 45 100
48
+ 45 46 100
49
+ 46 47 100
50
+ 47 48 100
51
+ 48 49 100
52
+ 49 59 100
53
+ 59 58 100
54
+ 58 57 100
55
+ 57 56 100
56
+ 56 55 100
57
+ 55 54 100
58
+ 54 53 100
59
+ 53 52 100
60
+ 52 51 100
61
+ 51 50 100
62
+ 50 60 100
63
+ 60 61 100
64
+ 61 62 100
65
+ 62 63 100
66
+ 63 64 100
67
+ 64 65 100
68
+ 65 66 100
69
+ 66 67 100
70
+ 67 68 100
71
+ 68 69 100
72
+ 69 79 100
73
+ 79 78 100
74
+ 78 77 100
75
+ 77 76 100
76
+ 76 75 100
77
+ 75 74 100
78
+ 74 73 100
79
+ 73 72 100
80
+ 72 71 100
81
+ 71 70 100
82
+ 70 80 100
83
+ 80 81 100
84
+ 81 82 100
85
+ 82 83 100
86
+ 83 84 100
87
+ 84 85 100
88
+ 85 86 100
89
+ 86 87 100
90
+ 87 88 100
91
+ 88 89 100
92
+ 89 99 100
93
+ 99 98 100
94
+ 98 97 100
95
+ 97 96 100
96
+ 96 95 100
97
+ 95 94 100
98
+ 94 93 100
99
+ 93 92 100
100
+ 92 91 100
101
+ 91 90 100
102
+ 0 91 1
@@ -0,0 +1,102 @@
1
+ 96 100
2
+ 84 91
3
+ 91 67 1
4
+ 4 93 20
5
+ 66 38 9
6
+ 69 86 15
7
+ 32 80 3
8
+ 5 24 6
9
+ 23 39 22
10
+ 83 20 35
11
+ 11 75 18
12
+ 54 75 18
13
+ 2 46 13
14
+ 14 81 7
15
+ 44 42 29
16
+ 31 35 10
17
+ 34 7 16
18
+ 31 28 11
19
+ 3 35 10
20
+ 9 33 23
21
+ 37 76 33
22
+ 18 40 20
23
+ 36 23 23
24
+ 49 89 11
25
+ 21 6 3
26
+ 26 33 22
27
+ 64 29 24
28
+ 57 92 33
29
+ 17 13 14
30
+ 1 26 21
31
+ 32 45 4
32
+ 14 3 9
33
+ 20 0 34
34
+ 37 8 34
35
+ 40 39 21
36
+ 17 28 12
37
+ 84 8 35
38
+ 93 85 22
39
+ 15 68 19
40
+ 49 41 10
41
+ 83 43 37
42
+ 19 73 38
43
+ 53 87 29
44
+ 84 61 41
45
+ 94 42 29
46
+ 18 77 19
47
+ 44 47 30
48
+ 70 56 17
49
+ 22 89 4
50
+ 91 48 2
51
+ 55 72 6
52
+ 43 73 38
53
+ 5 6 4
54
+ 82 50 26
55
+ 65 41 9
56
+ 47 79 31
57
+ 45 72 5
58
+ 50 94 28
59
+ 16 2 11
60
+ 7 56 16
61
+ 80 67 2
62
+ 54 4 20
63
+ 88 61 40
64
+ 58 24 6
65
+ 0 92 33
66
+ 21 48 2
67
+ 60 63 17
68
+ 52 10 15
69
+ 71 25 28
70
+ 16 38 10
71
+ 30 65 8
72
+ 15 60 18
73
+ 81 24 6
74
+ 12 36 24
75
+ 1 68 20
76
+ 77 70 18
77
+ 25 87 29
78
+ 88 19 39
79
+ 30 55 7
80
+ 62 9 23
81
+ 38 52 5
82
+ 34 78 14
83
+ 13 86 15
84
+ 85 27 22
85
+ 66 22 8
86
+ 62 59 25
87
+ 51 89 12
88
+ 74 51 13
89
+ 63 10 16
90
+ 22 58 7
91
+ 90 53 30
92
+ 24 65 3
93
+ 95 64 25
94
+ 69 11 17
95
+ 95 71 27
96
+ 52 74 14
97
+ 84 59 26
98
+ 78 46 13
99
+ 12 82 26
100
+ 29 27 23
101
+ 90 57 32
102
+ 79 76 32
@@ -1,5 +1,5 @@
1
1
  {
2
- "path": "easy/TheAlienBusinessOfCows",
2
+ "path": "medium/TheAlienBusinessOfCows",
3
3
  "name": "The alien business of cows",
4
4
  "alphanumName": "TheAlienBusinessOfCows",
5
5
  "link": "https://www.codingame.com/ide/puzzle/the-alien-business-of-cows",
@@ -0,0 +1,18 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int n;
11
+ int m;
12
+ cin >> n >> m; cin.ignore();
13
+
14
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
15
+ // To debug: cerr << "Debug messages..." << endl;
16
+
17
+ cout << "PLAYER" << endl;
18
+ }
@@ -0,0 +1,17 @@
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 n = in.nextInt();
10
+ int m = in.nextInt();
11
+
12
+ // Write an answer using System.out.println()
13
+ // To debug: System.err.println("Debug messages...");
14
+
15
+ System.out.println("PLAYER");
16
+ }
17
+ }
@@ -0,0 +1,8 @@
1
+ var inputs = readline().split(' ');
2
+ const n = parseInt(inputs[0]);
3
+ const m = parseInt(inputs[1]);
4
+
5
+ // Write an answer using console.log()
6
+ // To debug: console.error('Debug messages...');
7
+
8
+ console.log('PLAYER');
@@ -0,0 +1,7 @@
1
+ <?php
2
+ fscanf(STDIN, "%d %d", $n, $m);
3
+
4
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
5
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
6
+
7
+ echo("PLAYER\n");
@@ -0,0 +1,8 @@
1
+ var inputs: string[] = readline().split(' ');
2
+ const n: number = parseInt(inputs[0]);
3
+ const m: number = parseInt(inputs[1]);
4
+
5
+ // Write an answer using console.log()
6
+ // To debug: console.error('Debug messages...');
7
+
8
+ console.log('PLAYER');
@@ -0,0 +1,63 @@
1
+ {
2
+ "path": "medium/TheQueensTrekWythoffsGame",
3
+ "name": "The Queen’s Trek (Wythoff’s Game)",
4
+ "alphanumName": "TheQueensTrekWythoffsGame",
5
+ "link": "https://www.codingame.com/ide/puzzle/the-queens-trek-wythoffs-game",
6
+ "tests": [
7
+ {
8
+ "name": "empty piles",
9
+ "alphanumName": "emptyPiles",
10
+ "file": "01 - empty piles.txt"
11
+ },
12
+ {
13
+ "name": "1 move - pile 1 empty",
14
+ "alphanumName": "oneMovePile1Empty",
15
+ "file": "02 - 1 move - pile 1 empty.txt"
16
+ },
17
+ {
18
+ "name": "1 move - pile 2 empty",
19
+ "alphanumName": "oneMovePile2Empty",
20
+ "file": "03 - 1 move - pile 2 empty.txt"
21
+ },
22
+ {
23
+ "name": "1 move - 2 piles",
24
+ "alphanumName": "oneMove2Piles",
25
+ "file": "04 - 1 move - 2 piles.txt"
26
+ },
27
+ {
28
+ "name": "Simple one",
29
+ "alphanumName": "SimpleOne",
30
+ "file": "05 - Simple one.txt"
31
+ },
32
+ {
33
+ "name": "First win - 1",
34
+ "alphanumName": "FirstWin1",
35
+ "file": "06 - First win - 1.txt"
36
+ },
37
+ {
38
+ "name": "Second win - 1",
39
+ "alphanumName": "SecondWin1",
40
+ "file": "07 - Second win - 1.txt"
41
+ },
42
+ {
43
+ "name": "First win - 2",
44
+ "alphanumName": "FirstWin2",
45
+ "file": "08 - First win - 2.txt"
46
+ },
47
+ {
48
+ "name": "Second win - 2",
49
+ "alphanumName": "SecondWin2",
50
+ "file": "09 - Second win - 2.txt"
51
+ },
52
+ {
53
+ "name": "First win - 3",
54
+ "alphanumName": "FirstWin3",
55
+ "file": "10 - First win - 3.txt"
56
+ },
57
+ {
58
+ "name": "Second win - 3",
59
+ "alphanumName": "SecondWin3",
60
+ "file": "11 - Second win - 3.txt"
61
+ }
62
+ ]
63
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyrilverloop/codingame-configuration",
3
- "version": "1.22.0",
3
+ "version": "1.24.0",
4
4
  "description": "A project that contains CodinGame input, output and default code.",
5
5
  "repository": {
6
6
  "type": "git",