@cyrilverloop/codingame-configuration 1.17.1 → 1.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (832) hide show
  1. package/CHANGELOG.md +46 -1
  2. package/config/easy/CityLightsPart2/code/CGCode.cpp +27 -0
  3. package/config/easy/CityLightsPart2/code/CGCode.java +25 -0
  4. package/config/easy/CityLightsPart2/code/CGCode.js +12 -0
  5. package/config/easy/CityLightsPart2/code/CGCode.php +14 -0
  6. package/config/easy/CityLightsPart2/code/CGCode.ts +12 -0
  7. package/config/easy/CityLightsPart2/config.json +53 -0
  8. package/config/easy/CityLightsPart2/input/01 - Simple.txt +13 -0
  9. package/config/easy/CityLightsPart2/input/02 - Simple Again.txt +15 -0
  10. package/config/easy/CityLightsPart2/input/03 - More Towns.txt +27 -0
  11. package/config/easy/CityLightsPart2/input/04 - Rural.txt +33 -0
  12. package/config/easy/CityLightsPart2/input/05 - Urban.txt +43 -0
  13. package/config/easy/CityLightsPart2/input/06 - TOO MUCH LIGHT.txt +43 -0
  14. package/config/easy/CityLightsPart2/input/07 - im blind.txt +45 -0
  15. package/config/easy/CityLightsPart2/input/08 - pls stop wasting electricity.txt +39 -0
  16. package/config/easy/CityLightsPart2/input/09 - 2D again.txt +17 -0
  17. package/config/easy/CityLightsPart2/output/01 - Simple.txt +9 -0
  18. package/config/easy/CityLightsPart2/output/02 - Simple Again.txt +11 -0
  19. package/config/easy/CityLightsPart2/output/03 - More Towns.txt +23 -0
  20. package/config/easy/CityLightsPart2/output/04 - Rural.txt +29 -0
  21. package/config/easy/CityLightsPart2/output/05 - Urban.txt +39 -0
  22. package/config/easy/CityLightsPart2/output/06 - TOO MUCH LIGHT.txt +39 -0
  23. package/config/easy/CityLightsPart2/output/07 - im blind.txt +41 -0
  24. package/config/easy/CityLightsPart2/output/08 - pls stop wasting electricity.txt +35 -0
  25. package/config/easy/CityLightsPart2/output/09 - 2D again.txt +13 -0
  26. package/config/easy/ScaleableTicTacToe/code/CGCode.cpp +22 -0
  27. package/config/easy/ScaleableTicTacToe/code/CGCode.java +23 -0
  28. package/config/easy/ScaleableTicTacToe/code/CGCode.js +11 -0
  29. package/config/easy/ScaleableTicTacToe/code/CGCode.php +11 -0
  30. package/config/easy/ScaleableTicTacToe/code/CGCode.ts +11 -0
  31. package/config/easy/ScaleableTicTacToe/config.json +58 -0
  32. package/config/easy/ScaleableTicTacToe/input/01 - test 1.txt +4 -0
  33. package/config/easy/ScaleableTicTacToe/input/02 - test 2.txt +6 -0
  34. package/config/easy/ScaleableTicTacToe/input/03 - test 3.txt +7 -0
  35. package/config/easy/ScaleableTicTacToe/input/04 - test 4.txt +8 -0
  36. package/config/easy/ScaleableTicTacToe/input/05 - test 5.txt +5 -0
  37. package/config/easy/ScaleableTicTacToe/input/06 - test 6.txt +6 -0
  38. package/config/easy/ScaleableTicTacToe/input/07 - test 7.txt +7 -0
  39. package/config/easy/ScaleableTicTacToe/input/08 - test 8.txt +5 -0
  40. package/config/easy/ScaleableTicTacToe/input/09 - test 9.txt +13 -0
  41. package/config/easy/ScaleableTicTacToe/input/10 - test 10.txt +12 -0
  42. package/config/easy/ScaleableTicTacToe/output/01 - test 1.txt +4 -0
  43. package/config/easy/ScaleableTicTacToe/output/02 - test 2.txt +6 -0
  44. package/config/easy/ScaleableTicTacToe/output/03 - test 3.txt +7 -0
  45. package/config/easy/ScaleableTicTacToe/output/04 - test 4.txt +8 -0
  46. package/config/easy/ScaleableTicTacToe/output/05 - test 5.txt +5 -0
  47. package/config/easy/ScaleableTicTacToe/output/06 - test 6.txt +6 -0
  48. package/config/easy/ScaleableTicTacToe/output/07 - test 7.txt +7 -0
  49. package/config/easy/ScaleableTicTacToe/output/08 - test 8.txt +5 -0
  50. package/config/easy/ScaleableTicTacToe/output/09 - test 9.txt +13 -0
  51. package/config/easy/ScaleableTicTacToe/output/10 - test 10.txt +12 -0
  52. package/config/expert/AMillionDigitsOfPi/code/CGCode.cpp +19 -0
  53. package/config/expert/AMillionDigitsOfPi/code/CGCode.java +17 -0
  54. package/config/expert/AMillionDigitsOfPi/code/CGCode.js +7 -0
  55. package/config/expert/AMillionDigitsOfPi/code/CGCode.php +8 -0
  56. package/config/expert/AMillionDigitsOfPi/code/CGCode.ts +7 -0
  57. package/config/expert/AMillionDigitsOfPi/config.json +43 -0
  58. package/config/expert/AMillionDigitsOfPi/input/01 - test 1.txt +2 -0
  59. package/config/expert/AMillionDigitsOfPi/input/02 - test 2.txt +2 -0
  60. package/config/expert/AMillionDigitsOfPi/input/03 - test 3.txt +2 -0
  61. package/config/expert/AMillionDigitsOfPi/input/04 - test 4.txt +2 -0
  62. package/config/expert/AMillionDigitsOfPi/input/05 - test 5.txt +2 -0
  63. package/config/expert/AMillionDigitsOfPi/input/06 - test 6.txt +2 -0
  64. package/config/expert/AMillionDigitsOfPi/input/07 - test 7.txt +2 -0
  65. package/config/expert/AMillionDigitsOfPi/output/01 - test 1.txt +1 -0
  66. package/config/expert/AMillionDigitsOfPi/output/02 - test 2.txt +1 -0
  67. package/config/expert/AMillionDigitsOfPi/output/03 - test 3.txt +1 -0
  68. package/config/expert/AMillionDigitsOfPi/output/04 - test 4.txt +1 -0
  69. package/config/expert/AMillionDigitsOfPi/output/05 - test 5.txt +1 -0
  70. package/config/expert/AMillionDigitsOfPi/output/06 - test 6.txt +1 -0
  71. package/config/expert/AMillionDigitsOfPi/output/07 - test 7.txt +1 -0
  72. package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.cpp +29 -0
  73. package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.java +26 -0
  74. package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.js +18 -0
  75. package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.php +18 -0
  76. package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.ts +18 -0
  77. package/config/expert/BinaryNeuralNetworkPart2/config.json +38 -0
  78. package/config/expert/BinaryNeuralNetworkPart2/input/01 - Average.txt +85 -0
  79. package/config/expert/BinaryNeuralNetworkPart2/input/02 - Reverse.txt +85 -0
  80. package/config/expert/BinaryNeuralNetworkPart2/input/03 - Last digit.txt +85 -0
  81. package/config/expert/BinaryNeuralNetworkPart2/input/04 - AndOr.txt +85 -0
  82. package/config/expert/BinaryNeuralNetworkPart2/input/05 - Always zero.txt +85 -0
  83. package/config/expert/BinaryNeuralNetworkPart2/input/06 - And Xor.txt +85 -0
  84. package/config/expert/BinaryNeuralNetworkPart2/output/01 - Average.txt +4 -0
  85. package/config/expert/BinaryNeuralNetworkPart2/output/02 - Reverse.txt +4 -0
  86. package/config/expert/BinaryNeuralNetworkPart2/output/03 - Last digit.txt +4 -0
  87. package/config/expert/BinaryNeuralNetworkPart2/output/04 - AndOr.txt +4 -0
  88. package/config/expert/BinaryNeuralNetworkPart2/output/05 - Always zero.txt +4 -0
  89. package/config/expert/BinaryNeuralNetworkPart2/output/06 - And Xor.txt +4 -0
  90. package/config/expert/ChemicalEquationBalancing/code/CGCode.cpp +17 -0
  91. package/config/expert/ChemicalEquationBalancing/code/CGCode.java +16 -0
  92. package/config/expert/ChemicalEquationBalancing/code/CGCode.js +6 -0
  93. package/config/expert/ChemicalEquationBalancing/code/CGCode.php +7 -0
  94. package/config/expert/ChemicalEquationBalancing/code/CGCode.ts +6 -0
  95. package/config/expert/ChemicalEquationBalancing/config.json +53 -0
  96. package/config/expert/ChemicalEquationBalancing/input/01 - Simple & Single Letter Elements.txt +1 -0
  97. package/config/expert/ChemicalEquationBalancing/input/02 - Photosynthesis.txt +1 -0
  98. package/config/expert/ChemicalEquationBalancing/input/03 - Multi-letter Elements.txt +1 -0
  99. package/config/expert/ChemicalEquationBalancing/input/04 - Fire.txt +1 -0
  100. package/config/expert/ChemicalEquationBalancing/input/05 - Uncommon Elements.txt +1 -0
  101. package/config/expert/ChemicalEquationBalancing/input/06 - Chloroplatinic Acid.txt +1 -0
  102. package/config/expert/ChemicalEquationBalancing/input/07 - Sulfuric Acid.txt +1 -0
  103. package/config/expert/ChemicalEquationBalancing/input/08 - Not real chemistry.txt +1 -0
  104. package/config/expert/ChemicalEquationBalancing/input/09 - Iron(III) fluoride.txt +1 -0
  105. package/config/expert/ChemicalEquationBalancing/output/01 - Simple & Single Letter Elements.txt +1 -0
  106. package/config/expert/ChemicalEquationBalancing/output/02 - Photosynthesis.txt +1 -0
  107. package/config/expert/ChemicalEquationBalancing/output/03 - Multi-letter Elements.txt +1 -0
  108. package/config/expert/ChemicalEquationBalancing/output/04 - Fire.txt +1 -0
  109. package/config/expert/ChemicalEquationBalancing/output/05 - Uncommon Elements.txt +1 -0
  110. package/config/expert/ChemicalEquationBalancing/output/06 - Chloroplatinic Acid.txt +1 -0
  111. package/config/expert/ChemicalEquationBalancing/output/07 - Sulfuric Acid.txt +1 -0
  112. package/config/expert/ChemicalEquationBalancing/output/08 - Not real chemistry.txt +1 -0
  113. package/config/expert/ChemicalEquationBalancing/output/09 - Iron(III) fluoride.txt +1 -0
  114. package/config/expert/CompletedMahjongHands/code/CGCode.cpp +17 -0
  115. package/config/expert/CompletedMahjongHands/code/CGCode.java +16 -0
  116. package/config/expert/CompletedMahjongHands/code/CGCode.js +6 -0
  117. package/config/expert/CompletedMahjongHands/code/CGCode.php +7 -0
  118. package/config/expert/CompletedMahjongHands/code/CGCode.ts +6 -0
  119. package/config/expert/CompletedMahjongHands/config.json +88 -0
  120. package/config/expert/CompletedMahjongHands/input/01 - Four triplets.txt +1 -0
  121. package/config/expert/CompletedMahjongHands/input/02 - Wrong wait.txt +1 -0
  122. package/config/expert/CompletedMahjongHands/input/03 - All sequences.txt +1 -0
  123. package/config/expert/CompletedMahjongHands/input/04 - Wrong wind.txt +1 -0
  124. package/config/expert/CompletedMahjongHands/input/05 - Seven pairs.txt +1 -0
  125. package/config/expert/CompletedMahjongHands/input/06 - Kokushi musou, any wait.txt +1 -0
  126. package/config/expert/CompletedMahjongHands/input/07 - Complex hand.txt +1 -0
  127. package/config/expert/CompletedMahjongHands/input/08 - Complex wait.txt +1 -0
  128. package/config/expert/CompletedMahjongHands/input/09 - No pair.txt +1 -0
  129. package/config/expert/CompletedMahjongHands/input/10 - Wrong draw.txt +1 -0
  130. package/config/expert/CompletedMahjongHands/input/11 - Right draw.txt +1 -0
  131. package/config/expert/CompletedMahjongHands/input/12 - Trash.txt +1 -0
  132. package/config/expert/CompletedMahjongHands/input/13 - Golden gate bridge.txt +1 -0
  133. package/config/expert/CompletedMahjongHands/input/14 - Four overlapping runs.txt +1 -0
  134. package/config/expert/CompletedMahjongHands/input/15 - Not seven pairs.txt +1 -0
  135. package/config/expert/CompletedMahjongHands/input/16 - Kokushi musou, missed wait.txt +1 -0
  136. package/config/expert/CompletedMahjongHands/output/01 - Four triplets.txt +1 -0
  137. package/config/expert/CompletedMahjongHands/output/02 - Wrong wait.txt +1 -0
  138. package/config/expert/CompletedMahjongHands/output/03 - All sequences.txt +1 -0
  139. package/config/expert/CompletedMahjongHands/output/04 - Wrong wind.txt +1 -0
  140. package/config/expert/CompletedMahjongHands/output/05 - Seven pairs.txt +1 -0
  141. package/config/expert/CompletedMahjongHands/output/06 - Kokushi musou, any wait.txt +1 -0
  142. package/config/expert/CompletedMahjongHands/output/07 - Complex hand.txt +1 -0
  143. package/config/expert/CompletedMahjongHands/output/08 - Complex wait.txt +1 -0
  144. package/config/expert/CompletedMahjongHands/output/09 - No pair.txt +1 -0
  145. package/config/expert/CompletedMahjongHands/output/10 - Wrong draw.txt +1 -0
  146. package/config/expert/CompletedMahjongHands/output/11 - Right draw.txt +1 -0
  147. package/config/expert/CompletedMahjongHands/output/12 - Trash.txt +1 -0
  148. package/config/expert/CompletedMahjongHands/output/13 - Golden gate bridge.txt +1 -0
  149. package/config/expert/CompletedMahjongHands/output/14 - Four overlapping runs.txt +1 -0
  150. package/config/expert/CompletedMahjongHands/output/15 - Not seven pairs.txt +1 -0
  151. package/config/expert/CompletedMahjongHands/output/16 - Kokushi musou, missed wait.txt +1 -0
  152. package/config/expert/CrossTheLines/code/CGCode.cpp +24 -0
  153. package/config/expert/CrossTheLines/code/CGCode.java +22 -0
  154. package/config/expert/CrossTheLines/code/CGCode.js +13 -0
  155. package/config/expert/CrossTheLines/code/CGCode.php +11 -0
  156. package/config/expert/CrossTheLines/code/CGCode.ts +13 -0
  157. package/config/expert/CrossTheLines/config.json +83 -0
  158. package/config/expert/CrossTheLines/input/01 - One triangle.txt +4 -0
  159. package/config/expert/CrossTheLines/input/02 - 1 square.txt +5 -0
  160. package/config/expert/CrossTheLines/input/03 - Unconnected lines.txt +6 -0
  161. package/config/expert/CrossTheLines/input/04 - 1 square 1 triangle.txt +7 -0
  162. package/config/expert/CrossTheLines/input/05 - Unconnected lines 2.txt +9 -0
  163. package/config/expert/CrossTheLines/input/06 - It/342/200/231s a trap!.txt" +9 -0
  164. package/config/expert/CrossTheLines/input/07 - It is a non convex trap!.txt +9 -0
  165. package/config/expert/CrossTheLines/input/08 - It/342/200/231s a trap in a trap!.txt" +10 -0
  166. package/config/expert/CrossTheLines/input/09 - Touching triangles.txt +8 -0
  167. package/config/expert/CrossTheLines/input/10 - Touching squares.txt +10 -0
  168. package/config/expert/CrossTheLines/input/11 - Bigger case.txt +26 -0
  169. package/config/expert/CrossTheLines/input/12 - Triforce.txt +10 -0
  170. package/config/expert/CrossTheLines/input/13 - Quadforce.txt +13 -0
  171. package/config/expert/CrossTheLines/input/14 - Broken triforce.txt +10 -0
  172. package/config/expert/CrossTheLines/input/15 - Almost Destroyed Triforce.txt +10 -0
  173. package/config/expert/CrossTheLines/output/01 - One triangle.txt +1 -0
  174. package/config/expert/CrossTheLines/output/02 - 1 square.txt +1 -0
  175. package/config/expert/CrossTheLines/output/03 - Unconnected lines.txt +1 -0
  176. package/config/expert/CrossTheLines/output/04 - 1 square 1 triangle.txt +1 -0
  177. package/config/expert/CrossTheLines/output/05 - Unconnected lines 2.txt +1 -0
  178. package/config/expert/CrossTheLines/output/06 - It/342/200/231s a trap!.txt" +1 -0
  179. package/config/expert/CrossTheLines/output/07 - It is a non convex trap!.txt +1 -0
  180. package/config/expert/CrossTheLines/output/08 - It/342/200/231s a trap in a trap!.txt" +1 -0
  181. package/config/expert/CrossTheLines/output/09 - Touching triangles.txt +1 -0
  182. package/config/expert/CrossTheLines/output/10 - Touching squares.txt +1 -0
  183. package/config/expert/CrossTheLines/output/11 - Bigger case.txt +1 -0
  184. package/config/expert/CrossTheLines/output/12 - Triforce.txt +1 -0
  185. package/config/expert/CrossTheLines/output/13 - Quadforce.txt +1 -0
  186. package/config/expert/CrossTheLines/output/14 - Broken triforce.txt +1 -0
  187. package/config/expert/CrossTheLines/output/15 - Almost Destroyed Triforce.txt +1 -0
  188. package/config/expert/FillTheSquare/code/CGCode.cpp +23 -0
  189. package/config/expert/FillTheSquare/code/CGCode.java +24 -0
  190. package/config/expert/FillTheSquare/code/CGCode.js +11 -0
  191. package/config/expert/FillTheSquare/code/CGCode.php +14 -0
  192. package/config/expert/FillTheSquare/code/CGCode.ts +11 -0
  193. package/config/expert/FillTheSquare/config.json +28 -0
  194. package/config/expert/FillTheSquare/input/01 - 3x3.txt +4 -0
  195. package/config/expert/FillTheSquare/input/02 - 6x6.txt +7 -0
  196. package/config/expert/FillTheSquare/input/03 - 10x10.txt +11 -0
  197. package/config/expert/FillTheSquare/input/04 - CG.txt +16 -0
  198. package/config/expert/FillTheSquare/output/01 - 3x3.txt +3 -0
  199. package/config/expert/FillTheSquare/output/02 - 6x6.txt +6 -0
  200. package/config/expert/FillTheSquare/output/03 - 10x10.txt +10 -0
  201. package/config/expert/FillTheSquare/output/04 - CG.txt +15 -0
  202. package/config/expert/HighRiseBuildings/code/CGCode.cpp +39 -0
  203. package/config/expert/HighRiseBuildings/code/CGCode.java +33 -0
  204. package/config/expert/HighRiseBuildings/code/CGCode.js +23 -0
  205. package/config/expert/HighRiseBuildings/code/CGCode.php +30 -0
  206. package/config/expert/HighRiseBuildings/code/CGCode.ts +23 -0
  207. package/config/expert/HighRiseBuildings/config.json +28 -0
  208. package/config/expert/HighRiseBuildings/input/01 - test 1.txt +10 -0
  209. package/config/expert/HighRiseBuildings/input/02 - test 2.txt +11 -0
  210. package/config/expert/HighRiseBuildings/input/03 - test 3.txt +12 -0
  211. package/config/expert/HighRiseBuildings/input/04 - test 4.txt +13 -0
  212. package/config/expert/HighRiseBuildings/output/01 - test 1.txt +5 -0
  213. package/config/expert/HighRiseBuildings/output/02 - test 2.txt +6 -0
  214. package/config/expert/HighRiseBuildings/output/03 - test 3.txt +7 -0
  215. package/config/expert/HighRiseBuildings/output/04 - test 4.txt +8 -0
  216. package/config/expert/MathematicsForBigEars/code/CGCode.cpp +21 -0
  217. package/config/expert/MathematicsForBigEars/code/CGCode.java +22 -0
  218. package/config/expert/MathematicsForBigEars/code/CGCode.js +9 -0
  219. package/config/expert/MathematicsForBigEars/code/CGCode.php +11 -0
  220. package/config/expert/MathematicsForBigEars/code/CGCode.ts +9 -0
  221. package/config/expert/MathematicsForBigEars/config.json +73 -0
  222. package/config/expert/MathematicsForBigEars/input/01 - C3 Cyclic group with 3 elements.txt +2 -0
  223. package/config/expert/MathematicsForBigEars/input/02 - S3 Symmetric group on 3 elements.txt +3 -0
  224. package/config/expert/MathematicsForBigEars/input/03 - Klein group.txt +3 -0
  225. package/config/expert/MathematicsForBigEars/input/04 - D6 Dihedral group of the hexagon.txt +4 -0
  226. package/config/expert/MathematicsForBigEars/input/05 - H Group of quaternions.txt +3 -0
  227. package/config/expert/MathematicsForBigEars/input/06 - S5 Symmetric group on 5 elements.txt +3 -0
  228. package/config/expert/MathematicsForBigEars/input/07 - GL2(F3) Linear group of the 2/303/2272 matrices over the finite field with 3 elements.txt" +3 -0
  229. package/config/expert/MathematicsForBigEars/input/08 - PGL2(F3) Quotient of GL2(F3) by its centre.txt +3 -0
  230. package/config/expert/MathematicsForBigEars/input/09 - PSL2(F7).txt +4 -0
  231. package/config/expert/MathematicsForBigEars/input/10 - S7 Symmetric group on 7 elements.txt +3 -0
  232. package/config/expert/MathematicsForBigEars/input/11 - Squares subgroup of the edges of the Rubik/342/200/231s cube.txt" +7 -0
  233. package/config/expert/MathematicsForBigEars/input/12 - M12 Mathieu group.txt +4 -0
  234. package/config/expert/MathematicsForBigEars/input/13 - S5/303/227S5/303/227S3.txt" +11 -0
  235. package/config/expert/MathematicsForBigEars/output/01 - C3 Cyclic group with 3 elements.txt +1 -0
  236. package/config/expert/MathematicsForBigEars/output/02 - S3 Symmetric group on 3 elements.txt +1 -0
  237. package/config/expert/MathematicsForBigEars/output/03 - Klein group.txt +1 -0
  238. package/config/expert/MathematicsForBigEars/output/04 - D6 Dihedral group of the hexagon.txt +1 -0
  239. package/config/expert/MathematicsForBigEars/output/05 - H Group of quaternions.txt +1 -0
  240. package/config/expert/MathematicsForBigEars/output/06 - S5 Symmetric group on 5 elements.txt +1 -0
  241. package/config/expert/MathematicsForBigEars/output/07 - GL2(F3) Linear group of the 2/303/2272 matrices over the finite field with 3 elements.txt" +1 -0
  242. package/config/expert/MathematicsForBigEars/output/08 - PGL2(F3) Quotient of GL2(F3) by its centre.txt +1 -0
  243. package/config/expert/MathematicsForBigEars/output/09 - PSL2(F7).txt +1 -0
  244. package/config/expert/MathematicsForBigEars/output/10 - S7 Symmetric group on 7 elements.txt +1 -0
  245. package/config/expert/MathematicsForBigEars/output/11 - Squares subgroup of the edges of the Rubik/342/200/231s cube.txt" +1 -0
  246. package/config/expert/MathematicsForBigEars/output/12 - M12 Mathieu group.txt +1 -0
  247. package/config/expert/MathematicsForBigEars/output/13 - S5/303/227S5/303/227S3.txt" +1 -0
  248. package/config/expert/MinimaxSimpleExample/code/CGCode.cpp +27 -0
  249. package/config/expert/MinimaxSimpleExample/code/CGCode.java +24 -0
  250. package/config/expert/MinimaxSimpleExample/code/CGCode.js +17 -0
  251. package/config/expert/MinimaxSimpleExample/code/CGCode.php +16 -0
  252. package/config/expert/MinimaxSimpleExample/code/CGCode.ts +17 -0
  253. package/config/expert/MinimaxSimpleExample/config.json +33 -0
  254. package/config/expert/MinimaxSimpleExample/input/01 - 4 turns.txt +6 -0
  255. package/config/expert/MinimaxSimpleExample/input/02 - 2 turns.txt +4 -0
  256. package/config/expert/MinimaxSimpleExample/input/03 - 8 turns.txt +13 -0
  257. package/config/expert/MinimaxSimpleExample/input/04 - 16 turns.txt +75 -0
  258. package/config/expert/MinimaxSimpleExample/input/05 - 24 turns - 100 words.txt +102 -0
  259. package/config/expert/MinimaxSimpleExample/output/01 - 4 turns.txt +1 -0
  260. package/config/expert/MinimaxSimpleExample/output/02 - 2 turns.txt +1 -0
  261. package/config/expert/MinimaxSimpleExample/output/03 - 8 turns.txt +1 -0
  262. package/config/expert/MinimaxSimpleExample/output/04 - 16 turns.txt +1 -0
  263. package/config/expert/MinimaxSimpleExample/output/05 - 24 turns - 100 words.txt +1 -0
  264. package/config/expert/NintendoSponsoredChallenge/config.json +1 -1
  265. package/config/expert/Nurikabe/code/CGCode.cpp +21 -0
  266. package/config/expert/Nurikabe/code/CGCode.java +22 -0
  267. package/config/expert/Nurikabe/code/CGCode.js +9 -0
  268. package/config/expert/Nurikabe/code/CGCode.php +11 -0
  269. package/config/expert/Nurikabe/code/CGCode.ts +9 -0
  270. package/config/expert/Nurikabe/config.json +63 -0
  271. package/config/expert/Nurikabe/input/01 - test 1.txt +6 -0
  272. package/config/expert/Nurikabe/input/02 - test 2.txt +6 -0
  273. package/config/expert/Nurikabe/input/03 - test 3.txt +8 -0
  274. package/config/expert/Nurikabe/input/04 - test 4.txt +8 -0
  275. package/config/expert/Nurikabe/input/05 - test 5.txt +11 -0
  276. package/config/expert/Nurikabe/input/06 - test 6.txt +11 -0
  277. package/config/expert/Nurikabe/input/07 - test 7.txt +13 -0
  278. package/config/expert/Nurikabe/input/08 - test 8.txt +13 -0
  279. package/config/expert/Nurikabe/input/09 - test 9.txt +16 -0
  280. package/config/expert/Nurikabe/input/10 - test 10.txt +16 -0
  281. package/config/expert/Nurikabe/input/11 - test 11.txt +21 -0
  282. package/config/expert/Nurikabe/output/01 - test 1.txt +5 -0
  283. package/config/expert/Nurikabe/output/02 - test 2.txt +5 -0
  284. package/config/expert/Nurikabe/output/03 - test 3.txt +7 -0
  285. package/config/expert/Nurikabe/output/04 - test 4.txt +7 -0
  286. package/config/expert/Nurikabe/output/05 - test 5.txt +10 -0
  287. package/config/expert/Nurikabe/output/06 - test 6.txt +10 -0
  288. package/config/expert/Nurikabe/output/07 - test 7.txt +12 -0
  289. package/config/expert/Nurikabe/output/08 - test 8.txt +12 -0
  290. package/config/expert/Nurikabe/output/09 - test 9.txt +15 -0
  291. package/config/expert/Nurikabe/output/10 - test 10.txt +15 -0
  292. package/config/expert/Nurikabe/output/11 - test 11.txt +20 -0
  293. package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.cpp +25 -0
  294. package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.java +23 -0
  295. package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.js +14 -0
  296. package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.php +14 -0
  297. package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.ts +14 -0
  298. package/config/expert/PrimeFractalsinPascalsTriangle/config.json +48 -0
  299. package/config/expert/PrimeFractalsinPascalsTriangle/input/01 - Basic.txt +12 -0
  300. package/config/expert/PrimeFractalsinPascalsTriangle/input/02 - R = C (easy).txt +101 -0
  301. package/config/expert/PrimeFractalsinPascalsTriangle/input/03 - R = C (medium).txt +101 -0
  302. package/config/expert/PrimeFractalsinPascalsTriangle/input/04 - R = C (hard).txt +101 -0
  303. package/config/expert/PrimeFractalsinPascalsTriangle/input/05 - R != C (easy).txt +21 -0
  304. package/config/expert/PrimeFractalsinPascalsTriangle/input/06 - R != C (medium).txt +101 -0
  305. package/config/expert/PrimeFractalsinPascalsTriangle/input/07 - R != C (hard).txt +101 -0
  306. package/config/expert/PrimeFractalsinPascalsTriangle/input/08 - Mixed.txt +101 -0
  307. package/config/expert/PrimeFractalsinPascalsTriangle/output/01 - Basic.txt +11 -0
  308. package/config/expert/PrimeFractalsinPascalsTriangle/output/02 - R = C (easy).txt +100 -0
  309. package/config/expert/PrimeFractalsinPascalsTriangle/output/03 - R = C (medium).txt +100 -0
  310. package/config/expert/PrimeFractalsinPascalsTriangle/output/04 - R = C (hard).txt +100 -0
  311. package/config/expert/PrimeFractalsinPascalsTriangle/output/05 - R != C (easy).txt +20 -0
  312. package/config/expert/PrimeFractalsinPascalsTriangle/output/06 - R != C (medium).txt +100 -0
  313. package/config/expert/PrimeFractalsinPascalsTriangle/output/07 - R != C (hard).txt +100 -0
  314. package/config/expert/PrimeFractalsinPascalsTriangle/output/08 - Mixed.txt +100 -0
  315. package/config/expert/PrimeTransformations/code/CGCode.cpp +24 -0
  316. package/config/expert/PrimeTransformations/code/CGCode.java +21 -0
  317. package/config/expert/PrimeTransformations/code/CGCode.js +12 -0
  318. package/config/expert/PrimeTransformations/code/CGCode.php +12 -0
  319. package/config/expert/PrimeTransformations/code/CGCode.ts +12 -0
  320. package/config/expert/PrimeTransformations/config.json +28 -0
  321. package/config/expert/PrimeTransformations/input/01 - Forward Power.txt +3 -0
  322. package/config/expert/PrimeTransformations/input/02 - Backward Power.txt +3 -0
  323. package/config/expert/PrimeTransformations/input/03 - Factor Deduction.txt +5 -0
  324. package/config/expert/PrimeTransformations/input/04 - Index Deduction.txt +3 -0
  325. package/config/expert/PrimeTransformations/output/01 - Forward Power.txt +1 -0
  326. package/config/expert/PrimeTransformations/output/02 - Backward Power.txt +1 -0
  327. package/config/expert/PrimeTransformations/output/03 - Factor Deduction.txt +1 -0
  328. package/config/expert/PrimeTransformations/output/04 - Index Deduction.txt +1 -0
  329. package/config/expert/RecurringDecimals/code/CGCode.cpp +17 -0
  330. package/config/expert/RecurringDecimals/code/CGCode.java +16 -0
  331. package/config/expert/RecurringDecimals/code/CGCode.js +6 -0
  332. package/config/expert/RecurringDecimals/code/CGCode.php +7 -0
  333. package/config/expert/RecurringDecimals/code/CGCode.ts +6 -0
  334. package/config/expert/RecurringDecimals/config.json +53 -0
  335. package/config/expert/RecurringDecimals/input/01 - Small Terminating.txt +1 -0
  336. package/config/expert/RecurringDecimals/input/02 - Medium Terminating.txt +1 -0
  337. package/config/expert/RecurringDecimals/input/03 - Large Terminating.txt +1 -0
  338. package/config/expert/RecurringDecimals/input/04 - Small Non-Terminating.txt +1 -0
  339. package/config/expert/RecurringDecimals/input/05 - Medium Non-Terminating.txt +1 -0
  340. package/config/expert/RecurringDecimals/input/06 - Large Non Terminating.txt +1 -0
  341. package/config/expert/RecurringDecimals/input/07 - Small Mixed.txt +1 -0
  342. package/config/expert/RecurringDecimals/input/08 - Large Mixed.txt +1 -0
  343. package/config/expert/RecurringDecimals/input/09 - Test 9.txt +1 -0
  344. package/config/expert/RecurringDecimals/output/01 - Small Terminating.txt +1 -0
  345. package/config/expert/RecurringDecimals/output/02 - Medium Terminating.txt +1 -0
  346. package/config/expert/RecurringDecimals/output/03 - Large Terminating.txt +1 -0
  347. package/config/expert/RecurringDecimals/output/04 - Small Non-Terminating.txt +1 -0
  348. package/config/expert/RecurringDecimals/output/05 - Medium Non-Terminating.txt +1 -0
  349. package/config/expert/RecurringDecimals/output/06 - Large Non Terminating.txt +1 -0
  350. package/config/expert/RecurringDecimals/output/07 - Small Mixed.txt +1 -0
  351. package/config/expert/RecurringDecimals/output/08 - Large Mixed.txt +1 -0
  352. package/config/expert/RecurringDecimals/output/09 - Test 9.txt +1 -0
  353. package/config/expert/RunningUpThatHill/code/CGCode.cpp +24 -0
  354. package/config/expert/RunningUpThatHill/code/CGCode.java +20 -0
  355. package/config/expert/RunningUpThatHill/code/CGCode.js +10 -0
  356. package/config/expert/RunningUpThatHill/code/CGCode.php +11 -0
  357. package/config/expert/RunningUpThatHill/code/CGCode.ts +10 -0
  358. package/config/expert/RunningUpThatHill/config.json +78 -0
  359. package/config/expert/RunningUpThatHill/input/01 - Example: 2/303/2272.txt" +4 -0
  360. package/config/expert/RunningUpThatHill/input/02 - 2/303/2272.txt" +4 -0
  361. package/config/expert/RunningUpThatHill/input/03 - Another 2/303/2272.txt" +4 -0
  362. package/config/expert/RunningUpThatHill/input/04 - 3/303/2273.txt" +4 -0
  363. package/config/expert/RunningUpThatHill/input/05 - Another 3/303/2273.txt" +4 -0
  364. package/config/expert/RunningUpThatHill/input/06 - 3/303/2273 permutation.txt" +4 -0
  365. package/config/expert/RunningUpThatHill/input/07 - 4/303/2274.txt" +4 -0
  366. package/config/expert/RunningUpThatHill/input/08 - Another 4/303/2274.txt" +4 -0
  367. package/config/expert/RunningUpThatHill/input/09 - 5/303/2275.txt" +4 -0
  368. package/config/expert/RunningUpThatHill/input/10 - Another 5/303/2275.txt" +4 -0
  369. package/config/expert/RunningUpThatHill/input/11 - 5/303/2275 permutation.txt" +4 -0
  370. package/config/expert/RunningUpThatHill/input/12 - 6/303/2276.txt" +4 -0
  371. package/config/expert/RunningUpThatHill/input/13 - Another 6/303/2276.txt" +4 -0
  372. package/config/expert/RunningUpThatHill/input/14 - Mind the repetition.txt +4 -0
  373. package/config/expert/RunningUpThatHill/output/01 - Example: 2/303/2272.txt" +2 -0
  374. package/config/expert/RunningUpThatHill/output/02 - 2/303/2272.txt" +2 -0
  375. package/config/expert/RunningUpThatHill/output/03 - Another 2/303/2272.txt" +2 -0
  376. package/config/expert/RunningUpThatHill/output/04 - 3/303/2273.txt" +2 -0
  377. package/config/expert/RunningUpThatHill/output/05 - Another 3/303/2273.txt" +2 -0
  378. package/config/expert/RunningUpThatHill/output/06 - 3/303/2273 permutation.txt" +2 -0
  379. package/config/expert/RunningUpThatHill/output/07 - 4/303/2274.txt" +2 -0
  380. package/config/expert/RunningUpThatHill/output/08 - Another 4/303/2274.txt" +2 -0
  381. package/config/expert/RunningUpThatHill/output/09 - 5/303/2275.txt" +2 -0
  382. package/config/expert/RunningUpThatHill/output/10 - Another 5/303/2275.txt" +2 -0
  383. package/config/expert/RunningUpThatHill/output/11 - 5/303/2275 permutation.txt" +2 -0
  384. package/config/expert/RunningUpThatHill/output/12 - 6/303/2276.txt" +2 -0
  385. package/config/expert/RunningUpThatHill/output/13 - Another 6/303/2276.txt" +2 -0
  386. package/config/expert/RunningUpThatHill/output/14 - Mind the repetition.txt +2 -0
  387. package/config/expert/Skylines/code/CGCode.cpp +23 -0
  388. package/config/expert/Skylines/code/CGCode.java +21 -0
  389. package/config/expert/Skylines/code/CGCode.js +12 -0
  390. package/config/expert/Skylines/code/CGCode.php +11 -0
  391. package/config/expert/Skylines/code/CGCode.ts +12 -0
  392. package/config/expert/Skylines/config.json +63 -0
  393. package/config/expert/Skylines/input/01 - Single building.txt +2 -0
  394. package/config/expert/Skylines/input/02 - 2 separate buildings.txt +3 -0
  395. package/config/expert/Skylines/input/03 - 2 adjacent buildings.txt +3 -0
  396. package/config/expert/Skylines/input/04 - 2 overlapping buildings.txt +3 -0
  397. package/config/expert/Skylines/input/05 - 3 connected buildings.txt +4 -0
  398. package/config/expert/Skylines/input/06 - Lots of overlap.txt +11 -0
  399. package/config/expert/Skylines/input/07 - Separation.txt +11 -0
  400. package/config/expert/Skylines/input/08 - Big city.txt +26 -0
  401. package/config/expert/Skylines/input/09 - Bigger city.txt +51 -0
  402. package/config/expert/Skylines/input/10 - Metropolis.txt +101 -0
  403. package/config/expert/Skylines/input/11 - Almost adjacent.txt +3 -0
  404. package/config/expert/Skylines/output/01 - Single building.txt +1 -0
  405. package/config/expert/Skylines/output/02 - 2 separate buildings.txt +1 -0
  406. package/config/expert/Skylines/output/03 - 2 adjacent buildings.txt +1 -0
  407. package/config/expert/Skylines/output/04 - 2 overlapping buildings.txt +1 -0
  408. package/config/expert/Skylines/output/05 - 3 connected buildings.txt +1 -0
  409. package/config/expert/Skylines/output/06 - Lots of overlap.txt +1 -0
  410. package/config/expert/Skylines/output/07 - Separation.txt +1 -0
  411. package/config/expert/Skylines/output/08 - Big city.txt +1 -0
  412. package/config/expert/Skylines/output/09 - Bigger city.txt +1 -0
  413. package/config/expert/Skylines/output/10 - Metropolis.txt +1 -0
  414. package/config/expert/Skylines/output/11 - Almost adjacent.txt +1 -0
  415. package/config/expert/SlidingPuzzle/code/CGCode.cpp +22 -0
  416. package/config/expert/SlidingPuzzle/code/CGCode.java +23 -0
  417. package/config/expert/SlidingPuzzle/code/CGCode.js +11 -0
  418. package/config/expert/SlidingPuzzle/code/CGCode.php +11 -0
  419. package/config/expert/SlidingPuzzle/code/CGCode.ts +11 -0
  420. package/config/expert/SlidingPuzzle/config.json +28 -0
  421. package/config/expert/SlidingPuzzle/input/01 - 2x2.txt +3 -0
  422. package/config/expert/SlidingPuzzle/input/02 - 3x3.txt +4 -0
  423. package/config/expert/SlidingPuzzle/input/03 - 10x1.txt +11 -0
  424. package/config/expert/SlidingPuzzle/input/04 - 2x5.txt +3 -0
  425. package/config/expert/SlidingPuzzle/output/01 - 2x2.txt +1 -0
  426. package/config/expert/SlidingPuzzle/output/02 - 3x3.txt +1 -0
  427. package/config/expert/SlidingPuzzle/output/03 - 10x1.txt +1 -0
  428. package/config/expert/SlidingPuzzle/output/04 - 2x5.txt +1 -0
  429. package/config/expert/SpyTheSpies/code/CGCode.cpp +26 -0
  430. package/config/expert/SpyTheSpies/code/CGCode.java +27 -0
  431. package/config/expert/SpyTheSpies/code/CGCode.js +15 -0
  432. package/config/expert/SpyTheSpies/code/CGCode.php +11 -0
  433. package/config/expert/SpyTheSpies/code/CGCode.ts +15 -0
  434. package/config/expert/SpyTheSpies/config.json +33 -0
  435. package/config/expert/SpyTheSpies/input/01 - All in common.txt +16 -0
  436. package/config/expert/SpyTheSpies/input/02 - Common differentiator.txt +16 -0
  437. package/config/expert/SpyTheSpies/input/03 - Extra attributes.txt +16 -0
  438. package/config/expert/SpyTheSpies/input/04 - Extra steps.txt +16 -0
  439. package/config/expert/SpyTheSpies/input/05 - Very entangled.txt +16 -0
  440. package/config/expert/SpyTheSpies/output/01 - All in common.txt +1 -0
  441. package/config/expert/SpyTheSpies/output/02 - Common differentiator.txt +1 -0
  442. package/config/expert/SpyTheSpies/output/03 - Extra attributes.txt +1 -0
  443. package/config/expert/SpyTheSpies/output/04 - Extra steps.txt +3 -0
  444. package/config/expert/SpyTheSpies/output/05 - Very entangled.txt +11 -0
  445. package/config/expert/TheBarnyard/code/CGCode.cpp +26 -0
  446. package/config/expert/TheBarnyard/code/CGCode.java +23 -0
  447. package/config/expert/TheBarnyard/code/CGCode.js +15 -0
  448. package/config/expert/TheBarnyard/code/CGCode.php +16 -0
  449. package/config/expert/TheBarnyard/code/CGCode.ts +15 -0
  450. package/config/expert/TheBarnyard/config.json +28 -0
  451. package/config/expert/TheBarnyard/input/01 - Two animals.txt +4 -0
  452. package/config/expert/TheBarnyard/input/02 - Three animals.txt +5 -0
  453. package/config/expert/TheBarnyard/input/03 - Four animals.txt +6 -0
  454. package/config/expert/TheBarnyard/input/04 - Five animals.txt +7 -0
  455. package/config/expert/TheBarnyard/output/01 - Two animals.txt +2 -0
  456. package/config/expert/TheBarnyard/output/02 - Three animals.txt +3 -0
  457. package/config/expert/TheBarnyard/output/03 - Four animals.txt +4 -0
  458. package/config/expert/TheBarnyard/output/04 - Five animals.txt +5 -0
  459. package/config/expert/TheTwoPilesDifference/code/CGCode.cpp +21 -0
  460. package/config/expert/TheTwoPilesDifference/code/CGCode.java +19 -0
  461. package/config/expert/TheTwoPilesDifference/code/CGCode.js +10 -0
  462. package/config/expert/TheTwoPilesDifference/code/CGCode.php +12 -0
  463. package/config/expert/TheTwoPilesDifference/code/CGCode.ts +10 -0
  464. package/config/expert/TheTwoPilesDifference/config.json +33 -0
  465. package/config/expert/TheTwoPilesDifference/input/01 - Simple.txt +2 -0
  466. package/config/expert/TheTwoPilesDifference/input/02 - Normal.txt +2 -0
  467. package/config/expert/TheTwoPilesDifference/input/03 - Complex.txt +2 -0
  468. package/config/expert/TheTwoPilesDifference/input/04 - More values.txt +2 -0
  469. package/config/expert/TheTwoPilesDifference/input/05 - Big size.txt +2 -0
  470. package/config/expert/TheTwoPilesDifference/output/01 - Simple.txt +1 -0
  471. package/config/expert/TheTwoPilesDifference/output/02 - Normal.txt +1 -0
  472. package/config/expert/TheTwoPilesDifference/output/03 - Complex.txt +1 -0
  473. package/config/expert/TheTwoPilesDifference/output/04 - More values.txt +1 -0
  474. package/config/expert/TheTwoPilesDifference/output/05 - Big size.txt +1 -0
  475. package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.cpp +23 -0
  476. package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.java +20 -0
  477. package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.js +10 -0
  478. package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.php +12 -0
  479. package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.ts +10 -0
  480. package/config/expert/TheWaterJugRiddleFromDieHard3/config.json +28 -0
  481. package/config/expert/TheWaterJugRiddleFromDieHard3/input/01 - Example.txt +4 -0
  482. package/config/expert/TheWaterJugRiddleFromDieHard3/input/02 - 2 recipients.txt +4 -0
  483. package/config/expert/TheWaterJugRiddleFromDieHard3/input/03 - 3 recipients.txt +5 -0
  484. package/config/expert/TheWaterJugRiddleFromDieHard3/input/04 - 4 recipients.txt +6 -0
  485. package/config/expert/TheWaterJugRiddleFromDieHard3/output/01 - Example.txt +1 -0
  486. package/config/expert/TheWaterJugRiddleFromDieHard3/output/02 - 2 recipients.txt +1 -0
  487. package/config/expert/TheWaterJugRiddleFromDieHard3/output/03 - 3 recipients.txt +1 -0
  488. package/config/expert/TheWaterJugRiddleFromDieHard3/output/04 - 4 recipients.txt +1 -0
  489. package/config/expert/TilingBySquares/code/CGCode.cpp +18 -0
  490. package/config/expert/TilingBySquares/code/CGCode.java +17 -0
  491. package/config/expert/TilingBySquares/code/CGCode.js +8 -0
  492. package/config/expert/TilingBySquares/code/CGCode.php +7 -0
  493. package/config/expert/TilingBySquares/code/CGCode.ts +8 -0
  494. package/config/expert/TilingBySquares/config.json +43 -0
  495. package/config/expert/TilingBySquares/input/01 - test 1.txt +1 -0
  496. package/config/expert/TilingBySquares/input/02 - test 2.txt +1 -0
  497. package/config/expert/TilingBySquares/input/03 - test 3.txt +1 -0
  498. package/config/expert/TilingBySquares/input/04 - test 4.txt +1 -0
  499. package/config/expert/TilingBySquares/input/05 - test 5.txt +1 -0
  500. package/config/expert/TilingBySquares/input/06 - test 6.txt +1 -0
  501. package/config/expert/TilingBySquares/input/07 - test 7.txt +1 -0
  502. package/config/expert/TilingBySquares/output/01 - test 1.txt +1 -0
  503. package/config/expert/TilingBySquares/output/02 - test 2.txt +1 -0
  504. package/config/expert/TilingBySquares/output/03 - test 3.txt +1 -0
  505. package/config/expert/TilingBySquares/output/04 - test 4.txt +1 -0
  506. package/config/expert/TilingBySquares/output/05 - test 5.txt +1 -0
  507. package/config/expert/TilingBySquares/output/06 - test 6.txt +1 -0
  508. package/config/expert/TilingBySquares/output/07 - test 7.txt +1 -0
  509. package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.cpp +19 -0
  510. package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.java +18 -0
  511. package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.js +8 -0
  512. package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.php +10 -0
  513. package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.ts +8 -0
  514. package/config/expert/TwentyFIveXTwentyFIveSudoku/config.json +33 -0
  515. package/config/expert/TwentyFIveXTwentyFIveSudoku/input/01 - test 1.txt +25 -0
  516. package/config/expert/TwentyFIveXTwentyFIveSudoku/input/02 - test 2.txt +25 -0
  517. package/config/expert/TwentyFIveXTwentyFIveSudoku/input/03 - test 3.txt +25 -0
  518. package/config/expert/TwentyFIveXTwentyFIveSudoku/input/04 - test 4.txt +25 -0
  519. package/config/expert/TwentyFIveXTwentyFIveSudoku/input/05 - test 5.txt +25 -0
  520. package/config/expert/TwentyFIveXTwentyFIveSudoku/output/01 - test 1.txt +25 -0
  521. package/config/expert/TwentyFIveXTwentyFIveSudoku/output/02 - test 2.txt +25 -0
  522. package/config/expert/TwentyFIveXTwentyFIveSudoku/output/03 - test 3.txt +25 -0
  523. package/config/expert/TwentyFIveXTwentyFIveSudoku/output/04 - test 4.txt +25 -0
  524. package/config/expert/TwentyFIveXTwentyFIveSudoku/output/05 - test 5.txt +25 -0
  525. package/config/expert/UnfoldingPaper/code/CGCode.cpp +24 -0
  526. package/config/expert/UnfoldingPaper/code/CGCode.java +24 -0
  527. package/config/expert/UnfoldingPaper/code/CGCode.js +12 -0
  528. package/config/expert/UnfoldingPaper/code/CGCode.php +12 -0
  529. package/config/expert/UnfoldingPaper/code/CGCode.ts +12 -0
  530. package/config/expert/UnfoldingPaper/config.json +43 -0
  531. package/config/expert/UnfoldingPaper/input/01 - Example.txt +5 -0
  532. package/config/expert/UnfoldingPaper/input/02 - Multiple folds.txt +5 -0
  533. package/config/expert/UnfoldingPaper/input/03 - Big sheet.txt +13 -0
  534. package/config/expert/UnfoldingPaper/input/04 - Long unfolding.txt +5 -0
  535. package/config/expert/UnfoldingPaper/input/05 - Many pieces.txt +7 -0
  536. package/config/expert/UnfoldingPaper/input/06 - Random.txt +6 -0
  537. package/config/expert/UnfoldingPaper/input/07 - Chess board.txt +14 -0
  538. package/config/expert/UnfoldingPaper/output/01 - Example.txt +1 -0
  539. package/config/expert/UnfoldingPaper/output/02 - Multiple folds.txt +1 -0
  540. package/config/expert/UnfoldingPaper/output/03 - Big sheet.txt +1 -0
  541. package/config/expert/UnfoldingPaper/output/04 - Long unfolding.txt +1 -0
  542. package/config/expert/UnfoldingPaper/output/05 - Many pieces.txt +1 -0
  543. package/config/expert/UnfoldingPaper/output/06 - Random.txt +1 -0
  544. package/config/expert/UnfoldingPaper/output/07 - Chess board.txt +1 -0
  545. package/config/expert/WhenPigsFly/code/CGCode.cpp +21 -0
  546. package/config/expert/WhenPigsFly/code/CGCode.java +22 -0
  547. package/config/expert/WhenPigsFly/code/CGCode.js +9 -0
  548. package/config/expert/WhenPigsFly/code/CGCode.php +11 -0
  549. package/config/expert/WhenPigsFly/code/CGCode.ts +9 -0
  550. package/config/expert/WhenPigsFly/config.json +53 -0
  551. package/config/expert/WhenPigsFly/input/01 - Object classes.txt +4 -0
  552. package/config/expert/WhenPigsFly/input/02 - Traits and Abilities.txt +5 -0
  553. package/config/expert/WhenPigsFly/input/03 - Some but not all.txt +8 -0
  554. package/config/expert/WhenPigsFly/input/04 - Branching inheritance.txt +9 -0
  555. package/config/expert/WhenPigsFly/input/05 - Roundabout.txt +10 -0
  556. package/config/expert/WhenPigsFly/input/06 - Doubles.txt +5 -0
  557. package/config/expert/WhenPigsFly/input/07 - Big Loop.txt +10 -0
  558. package/config/expert/WhenPigsFly/input/08 - Unrelated.txt +12 -0
  559. package/config/expert/WhenPigsFly/input/09 - Final Test.txt +10 -0
  560. package/config/expert/WhenPigsFly/output/01 - Object classes.txt +1 -0
  561. package/config/expert/WhenPigsFly/output/02 - Traits and Abilities.txt +1 -0
  562. package/config/expert/WhenPigsFly/output/03 - Some but not all.txt +1 -0
  563. package/config/expert/WhenPigsFly/output/04 - Branching inheritance.txt +1 -0
  564. package/config/expert/WhenPigsFly/output/05 - Roundabout.txt +1 -0
  565. package/config/expert/WhenPigsFly/output/06 - Doubles.txt +1 -0
  566. package/config/expert/WhenPigsFly/output/07 - Big Loop.txt +1 -0
  567. package/config/expert/WhenPigsFly/output/08 - Unrelated.txt +1 -0
  568. package/config/expert/WhenPigsFly/output/09 - Final Test.txt +1 -0
  569. package/config/expert/Xorandor/code/CGCode.cpp +22 -0
  570. package/config/expert/Xorandor/code/CGCode.java +23 -0
  571. package/config/expert/Xorandor/code/CGCode.js +11 -0
  572. package/config/expert/Xorandor/code/CGCode.php +11 -0
  573. package/config/expert/Xorandor/code/CGCode.ts +11 -0
  574. package/config/expert/Xorandor/config.json +38 -0
  575. package/config/expert/Xorandor/input/01 - Example OrAnd.txt +10 -0
  576. package/config/expert/Xorandor/input/02 - Not.txt +12 -0
  577. package/config/expert/Xorandor/input/03 - Fork.txt +20 -0
  578. package/config/expert/Xorandor/input/04 - Switch.txt +16 -0
  579. package/config/expert/Xorandor/input/05 - Xnornandnor.txt +31 -0
  580. package/config/expert/Xorandor/input/06 - Big one.txt +37 -0
  581. package/config/expert/Xorandor/output/01 - Example OrAnd.txt +2 -0
  582. package/config/expert/Xorandor/output/02 - Not.txt +2 -0
  583. package/config/expert/Xorandor/output/03 - Fork.txt +3 -0
  584. package/config/expert/Xorandor/output/04 - Switch.txt +5 -0
  585. package/config/expert/Xorandor/output/05 - Xnornandnor.txt +6 -0
  586. package/config/expert/Xorandor/output/06 - Big one.txt +7 -0
  587. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.cpp +17 -0
  588. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.java +16 -0
  589. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.js +6 -0
  590. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.php +7 -0
  591. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.ts +6 -0
  592. package/config/hard/BeautifulBaseIsABeautifulSum/config.json +33 -0
  593. package/config/hard/BeautifulBaseIsABeautifulSum/input/01 - test 1.txt +1 -0
  594. package/config/hard/BeautifulBaseIsABeautifulSum/input/02 - test 2.txt +1 -0
  595. package/config/hard/BeautifulBaseIsABeautifulSum/input/03 - test 3.txt +1 -0
  596. package/config/hard/BeautifulBaseIsABeautifulSum/input/04 - test 4.txt +1 -0
  597. package/config/hard/BeautifulBaseIsABeautifulSum/input/05 - test 5.txt +1 -0
  598. package/config/hard/BeautifulBaseIsABeautifulSum/output/01 - test 1.txt +1 -0
  599. package/config/hard/BeautifulBaseIsABeautifulSum/output/02 - test 2.txt +1 -0
  600. package/config/hard/BeautifulBaseIsABeautifulSum/output/03 - test 3.txt +1 -0
  601. package/config/hard/BeautifulBaseIsABeautifulSum/output/04 - test 4.txt +1 -0
  602. package/config/hard/BeautifulBaseIsABeautifulSum/output/05 - test 5.txt +1 -0
  603. package/config/hard/PandorasBridges/code/CGCode.cpp +23 -0
  604. package/config/hard/PandorasBridges/code/CGCode.java +21 -0
  605. package/config/hard/PandorasBridges/code/CGCode.js +12 -0
  606. package/config/hard/PandorasBridges/code/CGCode.php +11 -0
  607. package/config/hard/PandorasBridges/code/CGCode.ts +12 -0
  608. package/config/hard/PandorasBridges/config.json +43 -0
  609. package/config/hard/PandorasBridges/input/01 - Small Islands.txt +11 -0
  610. package/config/hard/PandorasBridges/input/02 - Distance Checker.txt +5 -0
  611. package/config/hard/PandorasBridges/input/03 - Angle Checker.txt +6 -0
  612. package/config/hard/PandorasBridges/input/04 - Vertical and Horizontal.txt +6 -0
  613. package/config/hard/PandorasBridges/input/05 - Medium Islands.txt +28 -0
  614. package/config/hard/PandorasBridges/input/06 - Lots of Islands.txt +101 -0
  615. package/config/hard/PandorasBridges/input/07 - Lots Lots of Islands.txt +204 -0
  616. package/config/hard/PandorasBridges/output/01 - Small Islands.txt +2 -0
  617. package/config/hard/PandorasBridges/output/02 - Distance Checker.txt +2 -0
  618. package/config/hard/PandorasBridges/output/03 - Angle Checker.txt +2 -0
  619. package/config/hard/PandorasBridges/output/04 - Vertical and Horizontal.txt +2 -0
  620. package/config/hard/PandorasBridges/output/05 - Medium Islands.txt +2 -0
  621. package/config/hard/PandorasBridges/output/06 - Lots of Islands.txt +2 -0
  622. package/config/hard/PandorasBridges/output/07 - Lots Lots of Islands.txt +2 -0
  623. package/config/hard/UnfloodTheWorld/code/CGCode.cpp +24 -0
  624. package/config/hard/UnfloodTheWorld/code/CGCode.java +22 -0
  625. package/config/hard/UnfloodTheWorld/code/CGCode.js +14 -0
  626. package/config/hard/UnfloodTheWorld/code/CGCode.php +15 -0
  627. package/config/hard/UnfloodTheWorld/code/CGCode.ts +14 -0
  628. package/config/hard/UnfloodTheWorld/config.json +48 -0
  629. package/config/hard/UnfloodTheWorld/input/01 - One drain.txt +5 -0
  630. package/config/hard/UnfloodTheWorld/input/02 - Hill.txt +6 -0
  631. package/config/hard/UnfloodTheWorld/input/03 - Wall.txt +4 -0
  632. package/config/hard/UnfloodTheWorld/input/04 - Flat field.txt +4 -0
  633. package/config/hard/UnfloodTheWorld/input/05 - Chess board.txt +6 -0
  634. package/config/hard/UnfloodTheWorld/input/06 - Fractal.txt +10 -0
  635. package/config/hard/UnfloodTheWorld/input/07 - Maze.txt +10 -0
  636. package/config/hard/UnfloodTheWorld/input/08 - Plateaus.txt +7 -0
  637. package/config/hard/UnfloodTheWorld/output/01 - One drain.txt +1 -0
  638. package/config/hard/UnfloodTheWorld/output/02 - Hill.txt +1 -0
  639. package/config/hard/UnfloodTheWorld/output/03 - Wall.txt +1 -0
  640. package/config/hard/UnfloodTheWorld/output/04 - Flat field.txt +1 -0
  641. package/config/hard/UnfloodTheWorld/output/05 - Chess board.txt +1 -0
  642. package/config/hard/UnfloodTheWorld/output/06 - Fractal.txt +1 -0
  643. package/config/hard/UnfloodTheWorld/output/07 - Maze.txt +1 -0
  644. package/config/hard/UnfloodTheWorld/output/08 - Plateaus.txt +1 -0
  645. package/config/{hard → medium}/Hangman/config.json +1 -1
  646. package/config/medium/HillNotationAndHillOrder/code/CGCode.cpp +26 -0
  647. package/config/medium/HillNotationAndHillOrder/code/CGCode.java +26 -0
  648. package/config/medium/HillNotationAndHillOrder/code/CGCode.js +9 -0
  649. package/config/medium/HillNotationAndHillOrder/code/CGCode.php +11 -0
  650. package/config/medium/HillNotationAndHillOrder/code/CGCode.ts +9 -0
  651. package/config/medium/HillNotationAndHillOrder/config.json +33 -0
  652. package/config/medium/HillNotationAndHillOrder/input/01 - Simple Sort.txt +4 -0
  653. package/config/medium/HillNotationAndHillOrder/input/02 - Quantity Sort.txt +7 -0
  654. package/config/medium/HillNotationAndHillOrder/input/03 - Duplicates.txt +4 -0
  655. package/config/medium/HillNotationAndHillOrder/input/04 - Bigger Sort.txt +11 -0
  656. package/config/medium/HillNotationAndHillOrder/input/05 - Parenthesis.txt +4 -0
  657. package/config/medium/HillNotationAndHillOrder/output/01 - Simple Sort.txt +3 -0
  658. package/config/medium/HillNotationAndHillOrder/output/02 - Quantity Sort.txt +6 -0
  659. package/config/medium/HillNotationAndHillOrder/output/03 - Duplicates.txt +1 -0
  660. package/config/medium/HillNotationAndHillOrder/output/04 - Bigger Sort.txt +10 -0
  661. package/config/medium/HillNotationAndHillOrder/output/05 - Parenthesis.txt +3 -0
  662. package/config/medium/InequalityOverlapArea/code/CGCode.cpp +23 -0
  663. package/config/medium/InequalityOverlapArea/code/CGCode.java +24 -0
  664. package/config/medium/InequalityOverlapArea/code/CGCode.js +11 -0
  665. package/config/medium/InequalityOverlapArea/code/CGCode.php +13 -0
  666. package/config/medium/InequalityOverlapArea/code/CGCode.ts +11 -0
  667. package/config/medium/InequalityOverlapArea/config.json +68 -0
  668. package/config/medium/InequalityOverlapArea/input/01 - Simple Overlap.txt +4 -0
  669. package/config/medium/InequalityOverlapArea/input/02 - Floating.txt +5 -0
  670. package/config/medium/InequalityOverlapArea/input/03 - Pentagon.txt +6 -0
  671. package/config/medium/InequalityOverlapArea/input/04 - NO.txt +9 -0
  672. package/config/medium/InequalityOverlapArea/input/05 - Infinite.txt +7 -0
  673. package/config/medium/InequalityOverlapArea/input/06 - NoOverlap.txt +10 -0
  674. package/config/medium/InequalityOverlapArea/input/07 - Not Finite.txt +10 -0
  675. package/config/medium/InequalityOverlapArea/input/08 - Same Graph.txt +6 -0
  676. package/config/medium/InequalityOverlapArea/input/09 - One Line.txt +7 -0
  677. package/config/medium/InequalityOverlapArea/input/10 - One Point.txt +11 -0
  678. package/config/medium/InequalityOverlapArea/input/11 - Quadrilateral.txt +5 -0
  679. package/config/medium/InequalityOverlapArea/input/12 - Rectangle.txt +5 -0
  680. package/config/medium/InequalityOverlapArea/output/01 - Simple Overlap.txt +1 -0
  681. package/config/medium/InequalityOverlapArea/output/02 - Floating.txt +1 -0
  682. package/config/medium/InequalityOverlapArea/output/03 - Pentagon.txt +1 -0
  683. package/config/medium/InequalityOverlapArea/output/04 - NO.txt +1 -0
  684. package/config/medium/InequalityOverlapArea/output/05 - Infinite.txt +1 -0
  685. package/config/medium/InequalityOverlapArea/output/06 - NoOverlap.txt +1 -0
  686. package/config/medium/InequalityOverlapArea/output/07 - Not Finite.txt +1 -0
  687. package/config/medium/InequalityOverlapArea/output/08 - Same Graph.txt +1 -0
  688. package/config/medium/InequalityOverlapArea/output/09 - One Line.txt +1 -0
  689. package/config/medium/InequalityOverlapArea/output/10 - One Point.txt +1 -0
  690. package/config/medium/InequalityOverlapArea/output/11 - Quadrilateral.txt +1 -0
  691. package/config/medium/InequalityOverlapArea/output/12 - Rectangle.txt +1 -0
  692. package/config/medium/MirrorRotation/code/CGCode.cpp +24 -0
  693. package/config/medium/MirrorRotation/code/CGCode.java +24 -0
  694. package/config/medium/MirrorRotation/code/CGCode.js +12 -0
  695. package/config/medium/MirrorRotation/code/CGCode.php +12 -0
  696. package/config/medium/MirrorRotation/code/CGCode.ts +12 -0
  697. package/config/medium/MirrorRotation/config.json +38 -0
  698. package/config/medium/MirrorRotation/input/01 - 1 Flip.txt +6 -0
  699. package/config/medium/MirrorRotation/input/02 - Multiple.txt +7 -0
  700. package/config/medium/MirrorRotation/input/03 - Shortest Path.txt +8 -0
  701. package/config/medium/MirrorRotation/input/04 - Swirl.txt +11 -0
  702. package/config/medium/MirrorRotation/input/05 - Loop.txt +7 -0
  703. package/config/medium/MirrorRotation/input/06 - Confusing.txt +12 -0
  704. package/config/medium/MirrorRotation/output/01 - 1 Flip.txt +1 -0
  705. package/config/medium/MirrorRotation/output/02 - Multiple.txt +2 -0
  706. package/config/medium/MirrorRotation/output/03 - Shortest Path.txt +1 -0
  707. package/config/medium/MirrorRotation/output/04 - Swirl.txt +6 -0
  708. package/config/medium/MirrorRotation/output/05 - Loop.txt +3 -0
  709. package/config/medium/MirrorRotation/output/06 - Confusing.txt +3 -0
  710. package/config/medium/SnakesAndLadders/code/CGCode.cpp +33 -0
  711. package/config/medium/SnakesAndLadders/code/CGCode.java +28 -0
  712. package/config/medium/SnakesAndLadders/code/CGCode.js +22 -0
  713. package/config/medium/SnakesAndLadders/code/CGCode.php +17 -0
  714. package/config/medium/SnakesAndLadders/code/CGCode.ts +22 -0
  715. package/config/medium/SnakesAndLadders/config.json +133 -0
  716. package/config/medium/SnakesAndLadders/input/01 - Small Board.txt +9 -0
  717. package/config/medium/SnakesAndLadders/input/02 - Standard Board.txt +12 -0
  718. package/config/medium/SnakesAndLadders/input/03 - Large Board.txt +20 -0
  719. package/config/medium/SnakesAndLadders/input/04 - Small Bland Board.txt +5 -0
  720. package/config/medium/SnakesAndLadders/input/05 - Medium Bland Board.txt +6 -0
  721. package/config/medium/SnakesAndLadders/input/06 - Large Bland Board.txt +7 -0
  722. package/config/medium/SnakesAndLadders/input/07 - Small Board and Small Dice.txt +12 -0
  723. package/config/medium/SnakesAndLadders/input/08 - Small Board and Large Dice.txt +11 -0
  724. package/config/medium/SnakesAndLadders/input/09 - Large Board and Small Die.txt +16 -0
  725. package/config/medium/SnakesAndLadders/input/10 - Large Board and Large Die.txt +18 -0
  726. package/config/medium/SnakesAndLadders/input/11 - Small Non-Standard Board.txt +11 -0
  727. package/config/medium/SnakesAndLadders/input/12 - Medium Non-Standard Board.txt +18 -0
  728. package/config/medium/SnakesAndLadders/input/13 - Large Non-Standard Board.txt +30 -0
  729. package/config/medium/SnakesAndLadders/input/14 - Pocket Board.txt +5 -0
  730. package/config/medium/SnakesAndLadders/input/15 - No Ladders, Just Snakes.txt +12 -0
  731. package/config/medium/SnakesAndLadders/input/16 - No Snakes, Just Ladders.txt +16 -0
  732. package/config/medium/SnakesAndLadders/input/17 - Empty Board.txt +3 -0
  733. package/config/medium/SnakesAndLadders/input/18 - Empty Board 2.txt +3 -0
  734. package/config/medium/SnakesAndLadders/input/19 - No Chaining Detector.txt +9 -0
  735. package/config/medium/SnakesAndLadders/input/20 - Helpful Ladder.txt +27 -0
  736. package/config/medium/SnakesAndLadders/input/21 - Many Snakes and Ladders.txt +44 -0
  737. package/config/medium/SnakesAndLadders/input/22 - Many Snakes and Ladders 2.txt +77 -0
  738. package/config/medium/SnakesAndLadders/input/23 - Many Snakes and Ladders 3.txt +36 -0
  739. package/config/medium/SnakesAndLadders/input/24 - Useful Snake.txt +14 -0
  740. package/config/medium/SnakesAndLadders/input/25 - Useful Snakes.txt +24 -0
  741. package/config/medium/SnakesAndLadders/output/01 - Small Board.txt +1 -0
  742. package/config/medium/SnakesAndLadders/output/02 - Standard Board.txt +1 -0
  743. package/config/medium/SnakesAndLadders/output/03 - Large Board.txt +1 -0
  744. package/config/medium/SnakesAndLadders/output/04 - Small Bland Board.txt +1 -0
  745. package/config/medium/SnakesAndLadders/output/05 - Medium Bland Board.txt +1 -0
  746. package/config/medium/SnakesAndLadders/output/06 - Large Bland Board.txt +1 -0
  747. package/config/medium/SnakesAndLadders/output/07 - Small Board and Small Dice.txt +1 -0
  748. package/config/medium/SnakesAndLadders/output/08 - Small Board and Large Dice.txt +1 -0
  749. package/config/medium/SnakesAndLadders/output/09 - Large Board and Small Die.txt +1 -0
  750. package/config/medium/SnakesAndLadders/output/10 - Large Board and Large Die.txt +1 -0
  751. package/config/medium/SnakesAndLadders/output/11 - Small Non-Standard Board.txt +1 -0
  752. package/config/medium/SnakesAndLadders/output/12 - Medium Non-Standard Board.txt +1 -0
  753. package/config/medium/SnakesAndLadders/output/13 - Large Non-Standard Board.txt +1 -0
  754. package/config/medium/SnakesAndLadders/output/14 - Pocket Board.txt +1 -0
  755. package/config/medium/SnakesAndLadders/output/15 - No Ladders, Just Snakes.txt +1 -0
  756. package/config/medium/SnakesAndLadders/output/16 - No Snakes, Just Ladders.txt +1 -0
  757. package/config/medium/SnakesAndLadders/output/17 - Empty Board.txt +1 -0
  758. package/config/medium/SnakesAndLadders/output/18 - Empty Board 2.txt +1 -0
  759. package/config/medium/SnakesAndLadders/output/19 - No Chaining Detector.txt +1 -0
  760. package/config/medium/SnakesAndLadders/output/20 - Helpful Ladder.txt +1 -0
  761. package/config/medium/SnakesAndLadders/output/21 - Many Snakes and Ladders.txt +1 -0
  762. package/config/medium/SnakesAndLadders/output/22 - Many Snakes and Ladders 2.txt +1 -0
  763. package/config/medium/SnakesAndLadders/output/23 - Many Snakes and Ladders 3.txt +1 -0
  764. package/config/medium/SnakesAndLadders/output/24 - Useful Snake.txt +1 -0
  765. package/config/medium/SnakesAndLadders/output/25 - Useful Snakes.txt +1 -0
  766. package/config/medium/SwappingElements/code/CGCode.cpp +21 -0
  767. package/config/medium/SwappingElements/code/CGCode.java +22 -0
  768. package/config/medium/SwappingElements/code/CGCode.js +9 -0
  769. package/config/medium/SwappingElements/code/CGCode.php +11 -0
  770. package/config/medium/SwappingElements/code/CGCode.ts +9 -0
  771. package/config/medium/SwappingElements/config.json +83 -0
  772. package/config/medium/SwappingElements/input/01 - Kindergarten.txt +4 -0
  773. package/config/medium/SwappingElements/input/02 - ABC.txt +8 -0
  774. package/config/medium/SwappingElements/input/03 - Thread.txt +5 -0
  775. package/config/medium/SwappingElements/input/04 - Bob.txt +8 -0
  776. package/config/medium/SwappingElements/input/05 - Not Bob.txt +4 -0
  777. package/config/medium/SwappingElements/input/06 - Vacuum of the Space Key.txt +7 -0
  778. package/config/medium/SwappingElements/input/07 - Periodic Table.txt +19 -0
  779. package/config/medium/SwappingElements/input/08 - Chemical Compounds.txt +28 -0
  780. package/config/medium/SwappingElements/input/09 - Gibberish.txt +14 -0
  781. package/config/medium/SwappingElements/input/10 - Negative.txt +40 -0
  782. package/config/medium/SwappingElements/input/11 - How/342/200/231s your day going.txt" +19 -0
  783. package/config/medium/SwappingElements/input/12 - The World Ends.txt +117 -0
  784. package/config/medium/SwappingElements/input/13 - Numbering the Last One.txt +30 -0
  785. package/config/medium/SwappingElements/input/14 - Random.txt +19 -0
  786. package/config/medium/SwappingElements/input/15 - Coding.txt +10 -0
  787. package/config/medium/SwappingElements/output/01 - Kindergarten.txt +1 -0
  788. package/config/medium/SwappingElements/output/02 - ABC.txt +1 -0
  789. package/config/medium/SwappingElements/output/03 - Thread.txt +1 -0
  790. package/config/medium/SwappingElements/output/04 - Bob.txt +1 -0
  791. package/config/medium/SwappingElements/output/05 - Not Bob.txt +1 -0
  792. package/config/medium/SwappingElements/output/06 - Vacuum of the Space Key.txt +1 -0
  793. package/config/medium/SwappingElements/output/07 - Periodic Table.txt +1 -0
  794. package/config/medium/SwappingElements/output/08 - Chemical Compounds.txt +1 -0
  795. package/config/medium/SwappingElements/output/09 - Gibberish.txt +1 -0
  796. package/config/medium/SwappingElements/output/10 - Negative.txt +1 -0
  797. package/config/medium/SwappingElements/output/11 - How/342/200/231s your day going.txt" +1 -0
  798. package/config/medium/SwappingElements/output/12 - The World Ends.txt +1 -0
  799. package/config/medium/SwappingElements/output/13 - Numbering the Last One.txt +1 -0
  800. package/config/medium/SwappingElements/output/14 - Random.txt +1 -0
  801. package/config/medium/SwappingElements/output/15 - Coding.txt +1 -0
  802. package/config/medium/TableSolver/code/CGCode.cpp +21 -0
  803. package/config/medium/TableSolver/code/CGCode.java +22 -0
  804. package/config/medium/TableSolver/code/CGCode.js +9 -0
  805. package/config/medium/TableSolver/code/CGCode.php +11 -0
  806. package/config/medium/TableSolver/code/CGCode.ts +9 -0
  807. package/config/medium/TableSolver/config.json +43 -0
  808. package/config/medium/TableSolver/input/01 - Addition.txt +8 -0
  809. package/config/medium/TableSolver/input/02 - Subtraction.txt +8 -0
  810. package/config/medium/TableSolver/input/03 - Multiplication.txt +10 -0
  811. package/config/medium/TableSolver/input/04 - small.txt +4 -0
  812. package/config/medium/TableSolver/input/05 - BIG.txt +15 -0
  813. package/config/medium/TableSolver/input/06 - CG.txt +24 -0
  814. package/config/medium/TableSolver/input/07 - 0.txt +10 -0
  815. package/config/medium/TableSolver/output/01 - Addition.txt +7 -0
  816. package/config/medium/TableSolver/output/02 - Subtraction.txt +7 -0
  817. package/config/medium/TableSolver/output/03 - Multiplication.txt +9 -0
  818. package/config/medium/TableSolver/output/04 - small.txt +3 -0
  819. package/config/medium/TableSolver/output/05 - BIG.txt +15 -0
  820. package/config/medium/TableSolver/output/06 - CG.txt +23 -0
  821. package/config/medium/TableSolver/output/07 - 0.txt +9 -0
  822. package/package.json +1 -1
  823. /package/config/{hard → medium}/Hangman/code/CGCode.js +0 -0
  824. /package/config/{hard → medium}/Hangman/code/CGCode.php +0 -0
  825. /package/config/{hard → medium}/Hangman/input/01 - Solution found.txt +0 -0
  826. /package/config/{hard → medium}/Hangman/input/02 - Wrong answer.txt +0 -0
  827. /package/config/{hard → medium}/Hangman/input/03 - White space.txt +0 -0
  828. /package/config/{hard → medium}/Hangman/input/04 - Same letter.txt +0 -0
  829. /package/config/{hard → medium}/Hangman/output/01 - Solution found.txt +0 -0
  830. /package/config/{hard → medium}/Hangman/output/02 - Wrong answer.txt +0 -0
  831. /package/config/{hard → medium}/Hangman/output/03 - White space.txt +0 -0
  832. /package/config/{hard → medium}/Hangman/output/04 - Same letter.txt +0 -0
@@ -0,0 +1,35 @@
1
+ WZZY
2
+ ZZZZ
3
+ ZZZZ
4
+ YZZZ
5
+ VZZZ
6
+
7
+ ZZZZ
8
+ ZZZZ
9
+ ZZZZ
10
+ ZZZZ
11
+ ZZZZ
12
+
13
+ ZZZZ
14
+ ZZZZ
15
+ ZZZZ
16
+ ZZZZ
17
+ ZZZZ
18
+
19
+ ZZZZ
20
+ ZZZZ
21
+ ZZZZ
22
+ ZZZZ
23
+ ZZZZ
24
+
25
+ ZZZZ
26
+ ZZZZ
27
+ ZZZZ
28
+ ZZZZ
29
+ ZZZZ
30
+
31
+ ZZZX
32
+ ZZZZ
33
+ ZZZZ
34
+ ZZZZ
35
+ YZZZ
@@ -0,0 +1,13 @@
1
+ IIJJKKKKKJJII
2
+ IJKKLLLLLKKJI
3
+ JKKLMMMMMLKKJ
4
+ JKLMMNNNMMLKJ
5
+ KLMMNOOONMMLK
6
+ KLMNOPPPONMLK
7
+ KLMNOPQPONMLK
8
+ KLMNOPPPONMLK
9
+ KLMMNOOONMMLK
10
+ JKLMMNNNMMLKJ
11
+ JKKLMMMMMLKKJ
12
+ IJKKLLLLLKKJI
13
+ IIJJKKKKKJJII
@@ -0,0 +1,22 @@
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 g;
12
+ cin >> n >> g; cin.ignore();
13
+ for (int i = 0; i < n; i++) {
14
+ string row;
15
+ getline(cin, row);
16
+ }
17
+
18
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
19
+ // To debug: cerr << "Debug messages..." << endl;
20
+
21
+ cout << "Answer" << endl;
22
+ }
@@ -0,0 +1,23 @@
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 g = in.nextInt();
11
+ if (in.hasNextLine()) {
12
+ in.nextLine();
13
+ }
14
+ for (int i = 0; i < n; i++) {
15
+ String row = in.nextLine();
16
+ }
17
+
18
+ // Write an answer using System.out.println()
19
+ // To debug: System.err.println("Debug messages...");
20
+
21
+ System.out.println("Answer");
22
+ }
23
+ }
@@ -0,0 +1,11 @@
1
+ var inputs = readline().split(' ');
2
+ const n = parseInt(inputs[0]);
3
+ const g = parseInt(inputs[1]);
4
+ for (let i = 0; i < n; i++) {
5
+ const row = readline();
6
+ }
7
+
8
+ // Write an answer using console.log()
9
+ // To debug: console.error('Debug messages...');
10
+
11
+ console.log('Answer');
@@ -0,0 +1,11 @@
1
+ <?php
2
+ fscanf(STDIN, "%d %d", $n, $g);
3
+ for ($i = 0; $i < $n; $i++)
4
+ {
5
+ $row = stream_get_line(STDIN, $n + 1, "\n");
6
+ }
7
+
8
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
9
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
10
+
11
+ echo("Answer\n");
@@ -0,0 +1,11 @@
1
+ var inputs: string[] = readline().split(' ');
2
+ const n: number = parseInt(inputs[0]);
3
+ const g: number = parseInt(inputs[1]);
4
+ for (let i = 0; i < n; i++) {
5
+ const row: string = readline();
6
+ }
7
+
8
+ // Write an answer using console.log()
9
+ // To debug: console.error('Debug messages...');
10
+
11
+ console.log('Answer');
@@ -0,0 +1,58 @@
1
+ {
2
+ "path": "easy/ScaleableTicTacToe",
3
+ "name": "Scaleable TicTacToe",
4
+ "alphanumName": "ScaleableTicTacToe",
5
+ "link": "https://www.codingame.com/ide/puzzle/scaleable-tictactoe",
6
+ "tests": [
7
+ {
8
+ "name": "Test 1",
9
+ "alphanumName": "test1",
10
+ "file": "01 - test 1.txt"
11
+ },
12
+ {
13
+ "name": "Test 2",
14
+ "alphanumName": "test2",
15
+ "file": "02 - test 2.txt"
16
+ },
17
+ {
18
+ "name": "Test 3",
19
+ "alphanumName": "test3",
20
+ "file": "03 - test 3.txt"
21
+ },
22
+ {
23
+ "name": "Test 4",
24
+ "alphanumName": "test4",
25
+ "file": "04 - test 4.txt"
26
+ },
27
+ {
28
+ "name": "Test 5",
29
+ "alphanumName": "test5",
30
+ "file": "05 - test 5.txt"
31
+ },
32
+ {
33
+ "name": "Test 6",
34
+ "alphanumName": "test6",
35
+ "file": "06 - test 6.txt"
36
+ },
37
+ {
38
+ "name": "Test 7",
39
+ "alphanumName": "test7",
40
+ "file": "07 - test 7.txt"
41
+ },
42
+ {
43
+ "name": "Test 8",
44
+ "alphanumName": "test8",
45
+ "file": "08 - test 8.txt"
46
+ },
47
+ {
48
+ "name": "Test 9",
49
+ "alphanumName": "test9",
50
+ "file": "09 - test 9.txt"
51
+ },
52
+ {
53
+ "name": "Test 10",
54
+ "alphanumName": "test10",
55
+ "file": "10 - test 10.txt"
56
+ }
57
+ ]
58
+ }
@@ -0,0 +1,4 @@
1
+ 3 3
2
+ X O
3
+ XO
4
+ XOX
@@ -0,0 +1,6 @@
1
+ 5 4
2
+ O XXX
3
+ OX
4
+ O
5
+ XXXX
6
+ O O
@@ -0,0 +1,7 @@
1
+ 6 4
2
+ OX X
3
+ XX OXX
4
+ XXO XX
5
+ XOOX
6
+ O X O
7
+ O
@@ -0,0 +1,8 @@
1
+ 7 4
2
+ O XO
3
+ XX X
4
+ OXOOX X
5
+ XO OX X
6
+ XO XXX
7
+ XX OO
8
+ X O O
@@ -0,0 +1,5 @@
1
+ 4 3
2
+ OXOX
3
+ OXOX
4
+ XOXO
5
+
@@ -0,0 +1,6 @@
1
+ 5 3
2
+ O
3
+ OX XX
4
+ XO
5
+ O OXO
6
+ X O O
@@ -0,0 +1,7 @@
1
+ 6 5
2
+ O XOXX
3
+ XX
4
+ XO
5
+ X O
6
+ OOOOO
7
+ XOX
@@ -0,0 +1,5 @@
1
+ 4 4
2
+ OX
3
+ O O
4
+ OXO
5
+ X XO
@@ -0,0 +1,13 @@
1
+ 12 4
2
+ X X X
3
+ O X
4
+ XOO X OXOO
5
+ X O XO
6
+ O XO OOX
7
+ XO O OO X
8
+ X XO OX
9
+ X O
10
+ OO
11
+ X XXX O
12
+ X X O
13
+ XO XX
@@ -0,0 +1,12 @@
1
+ 11 10
2
+ XOXOOOOOOXX
3
+ XOOXOXOOOXO
4
+ OOXOXOOXXXX
5
+ XOXXXOOXXOX
6
+ OOOXXXXOXOO
7
+ XOOXOXOOXXX
8
+ XOXOOXXOOOO
9
+ OOXXXOOXOXO
10
+ OXXXXOOXOOO
11
+ XOOOXXXXXOX
12
+ OXOOOOXOXOX
@@ -0,0 +1,4 @@
1
+ | O
2
+ |O
3
+ |OX
4
+ The winner is X.
@@ -0,0 +1,6 @@
1
+ O XXX
2
+ OX
3
+ O
4
+ ----
5
+ O O
6
+ The winner is X.
@@ -0,0 +1,7 @@
1
+ OX X
2
+ \X OXX
3
+ X\O XX
4
+ \OOX
5
+ O \ O
6
+ O
7
+ The winner is X.
@@ -0,0 +1,8 @@
1
+ O XO
2
+ XX X
3
+ OXOOX X
4
+ XO O/ X
5
+ XO /XX
6
+ /X OO
7
+ / O O
8
+ The winner is X.
@@ -0,0 +1,5 @@
1
+ OXOX
2
+ OXOX
3
+ XOXO
4
+
5
+ The game isn't over yet!
@@ -0,0 +1,6 @@
1
+ O
2
+ OX XX
3
+ X|
4
+ O |XO
5
+ X | O
6
+ The winner is O.
@@ -0,0 +1,7 @@
1
+ O XOXX
2
+ XX
3
+ XO
4
+ X O
5
+ -----
6
+ XOX
7
+ The winner is O.
@@ -0,0 +1,5 @@
1
+ \X
2
+ \ O
3
+ OX\
4
+ X X\
5
+ The winner is O.
@@ -0,0 +1,13 @@
1
+ X X X
2
+ O X
3
+ XOO X OXO/
4
+ X O X/
5
+ O XO /OX
6
+ XO O /O X
7
+ X XO OX
8
+ X O
9
+ OO
10
+ X XXX O
11
+ X X O
12
+ XO XX
13
+ The winner is O.
@@ -0,0 +1,12 @@
1
+ XOXOOOOOOXX
2
+ XOOXOXOOOXO
3
+ OOXOXOOXXXX
4
+ XOXXXOOXXOX
5
+ OOOXXXXOXOO
6
+ XOOXOXOOXXX
7
+ XOXOOXXOOOO
8
+ OOXXXOOXOXO
9
+ OXXXXOOXOOO
10
+ XOOOXXXXXOX
11
+ OXOOOOXOXOX
12
+ The game ended in a draw!
@@ -0,0 +1,19 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int index;
11
+ cin >> index; cin.ignore();
12
+ int n;
13
+ cin >> n; cin.ignore();
14
+
15
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
16
+ // To debug: cerr << "Debug messages..." << endl;
17
+
18
+ cout << "digits" << endl;
19
+ }
@@ -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 INDEX = in.nextInt();
10
+ int N = in.nextInt();
11
+
12
+ // Write an answer using System.out.println()
13
+ // To debug: System.err.println("Debug messages...");
14
+
15
+ System.out.println("digits");
16
+ }
17
+ }
@@ -0,0 +1,7 @@
1
+ const INDEX = parseInt(readline());
2
+ const N = parseInt(readline());
3
+
4
+ // Write an answer using console.log()
5
+ // To debug: console.error('Debug messages...');
6
+
7
+ console.log('digits');
@@ -0,0 +1,8 @@
1
+ <?php
2
+ fscanf(STDIN, "%d", $INDEX);
3
+ fscanf(STDIN, "%d", $N);
4
+
5
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
6
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
7
+
8
+ echo("digits\n");
@@ -0,0 +1,7 @@
1
+ const INDEX: number = parseInt(readline());
2
+ const N: number = parseInt(readline());
3
+
4
+ // Write an answer using console.log()
5
+ // To debug: console.error('Debug messages...');
6
+
7
+ console.log('digits');
@@ -0,0 +1,43 @@
1
+ {
2
+ "path": "expert/AMillionDigitsOfPi",
3
+ "name": "A Million Digits of Pi",
4
+ "alphanumName": "AMillionDigitsOfPi",
5
+ "link": "https://www.codingame.com/ide/puzzle/a-million-digits-of-pi",
6
+ "tests": [
7
+ {
8
+ "name": "Test 1",
9
+ "alphanumName": "test1",
10
+ "file": "01 - test 1.txt"
11
+ },
12
+ {
13
+ "name": "Test 2",
14
+ "alphanumName": "test2",
15
+ "file": "02 - test 2.txt"
16
+ },
17
+ {
18
+ "name": "Test 3",
19
+ "alphanumName": "test3",
20
+ "file": "03 - test 3.txt"
21
+ },
22
+ {
23
+ "name": "Test 4",
24
+ "alphanumName": "test4",
25
+ "file": "04 - test 4.txt"
26
+ },
27
+ {
28
+ "name": "Test 5",
29
+ "alphanumName": "test5",
30
+ "file": "05 - test 5.txt"
31
+ },
32
+ {
33
+ "name": "Test 6",
34
+ "alphanumName": "test6",
35
+ "file": "06 - test 6.txt"
36
+ },
37
+ {
38
+ "name": "Test 7",
39
+ "alphanumName": "test7",
40
+ "file": "07 - test 7.txt"
41
+ }
42
+ ]
43
+ }
@@ -0,0 +1 @@
1
+ 32118636062252701154
@@ -0,0 +1 @@
1
+ 088077855566632397283342252706
@@ -0,0 +1 @@
1
+ 9037059562142587514293266878284788078762
@@ -0,0 +1 @@
1
+ 05496374484069145828464261242049616787491900287079
@@ -0,0 +1 @@
1
+ 34015238428243963913256867292722487084779696809273
@@ -0,0 +1 @@
1
+ 02833119371611408747270676255856777511995666748615
@@ -0,0 +1,29 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int tests;
11
+ int training_sets;
12
+ cin >> tests >> training_sets; cin.ignore();
13
+ for (int i = 0; i < tests; i++) {
14
+ string test_inputs;
15
+ cin >> test_inputs; cin.ignore();
16
+ }
17
+ for (int i = 0; i < training_sets; i++) {
18
+ string training_inputs;
19
+ string expected_outputs;
20
+ cin >> training_inputs >> expected_outputs; cin.ignore();
21
+ }
22
+ for (int i = 0; i < tests; i++) {
23
+
24
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
25
+ // To debug: cerr << "Debug messages..." << endl;
26
+
27
+ cout << "answer" << endl;
28
+ }
29
+ }
@@ -0,0 +1,26 @@
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 tests = in.nextInt();
10
+ int trainingSets = in.nextInt();
11
+ for (int i = 0; i < tests; i++) {
12
+ String testInputs = in.next();
13
+ }
14
+ for (int i = 0; i < trainingSets; i++) {
15
+ String trainingInputs = in.next();
16
+ String expectedOutputs = in.next();
17
+ }
18
+ for (int i = 0; i < tests; i++) {
19
+
20
+ // Write an answer using System.out.println()
21
+ // To debug: System.err.println("Debug messages...");
22
+
23
+ System.out.println("answer");
24
+ }
25
+ }
26
+ }
@@ -0,0 +1,18 @@
1
+ var inputs = readline().split(' ');
2
+ const tests = parseInt(inputs[0]);
3
+ const trainingSets = parseInt(inputs[1]);
4
+ for (let i = 0; i < tests; i++) {
5
+ const testInputs = readline();
6
+ }
7
+ for (let i = 0; i < trainingSets; i++) {
8
+ var inputs = readline().split(' ');
9
+ const trainingInputs = inputs[0];
10
+ const expectedOutputs = inputs[1];
11
+ }
12
+ for (let i = 0; i < tests; i++) {
13
+
14
+ // Write an answer using console.log()
15
+ // To debug: console.error('Debug messages...');
16
+
17
+ console.log('answer');
18
+ }
@@ -0,0 +1,18 @@
1
+ <?php
2
+ fscanf(STDIN, "%d %d", $tests, $trainingSets);
3
+ for ($i = 0; $i < $tests; $i++)
4
+ {
5
+ fscanf(STDIN, "%s", $testInputs);
6
+ }
7
+ for ($i = 0; $i < $trainingSets; $i++)
8
+ {
9
+ fscanf(STDIN, "%s %s", $trainingInputs, $expectedOutputs);
10
+ }
11
+ for ($i = 0; $i < $tests; $i++)
12
+ {
13
+
14
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
15
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
16
+
17
+ echo("answer\n");
18
+ }
@@ -0,0 +1,18 @@
1
+ var inputs: string[] = readline().split(' ');
2
+ const tests: number = parseInt(inputs[0]);
3
+ const trainingSets: number = parseInt(inputs[1]);
4
+ for (let i = 0; i < tests; i++) {
5
+ const testInputs: string = readline();
6
+ }
7
+ for (let i = 0; i < trainingSets; i++) {
8
+ var inputs: string[] = readline().split(' ');
9
+ const trainingInputs: string = inputs[0];
10
+ const expectedOutputs: string = inputs[1];
11
+ }
12
+ for (let i = 0; i < tests; i++) {
13
+
14
+ // Write an answer using console.log()
15
+ // To debug: console.error('Debug messages...');
16
+
17
+ console.log('answer');
18
+ }