@cyrilverloop/codingame-configuration 1.9.0 → 1.11.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 (1280) hide show
  1. package/CHANGELOG.md +75 -0
  2. package/LICENSE +1 -1
  3. package/config/easy/Azimut/code/CGCode.js +10 -0
  4. package/config/easy/Azimut/code/CGCode.php +12 -0
  5. package/config/easy/Azimut/config.json +38 -0
  6. package/config/easy/Azimut/input/01 - Simple Turn.txt +3 -0
  7. package/config/easy/Azimut/input/02 - Three in a row.txt +5 -0
  8. package/config/easy/Azimut/input/03 - Backtracking.txt +6 -0
  9. package/config/easy/Azimut/input/04 - Running Ahead.txt +8 -0
  10. package/config/easy/Azimut/input/05 - Long Run.txt +17 -0
  11. package/config/easy/Azimut/input/06 - Nascar.txt +14 -0
  12. package/config/easy/Azimut/output/01 - Simple Turn.txt +1 -0
  13. package/config/easy/Azimut/output/02 - Three in a row.txt +1 -0
  14. package/config/easy/Azimut/output/03 - Backtracking.txt +1 -0
  15. package/config/easy/Azimut/output/04 - Running Ahead.txt +1 -0
  16. package/config/easy/Azimut/output/05 - Long Run.txt +1 -0
  17. package/config/easy/Azimut/output/06 - Nascar.txt +1 -0
  18. package/config/easy/BijectiveNumeration/code/CGCode.js +10 -0
  19. package/config/easy/BijectiveNumeration/code/CGCode.php +12 -0
  20. package/config/easy/BijectiveNumeration/config.json +53 -0
  21. package/config/easy/BijectiveNumeration/input/01 - Simple Parsing.txt +2 -0
  22. package/config/easy/BijectiveNumeration/input/02 - Parsing.txt +2 -0
  23. package/config/easy/BijectiveNumeration/input/03 - More Parsing.txt +2 -0
  24. package/config/easy/BijectiveNumeration/input/04 - Simple Generation.txt +2 -0
  25. package/config/easy/BijectiveNumeration/input/05 - Generation.txt +2 -0
  26. package/config/easy/BijectiveNumeration/input/06 - More Generation.txt +2 -0
  27. package/config/easy/BijectiveNumeration/input/07 - Mixed Test.txt +2 -0
  28. package/config/easy/BijectiveNumeration/input/08 - Bigger Test.txt +2 -0
  29. package/config/easy/BijectiveNumeration/input/09 - Huge Test.txt +2 -0
  30. package/config/easy/BijectiveNumeration/output/01 - Simple Parsing.txt +1 -0
  31. package/config/easy/BijectiveNumeration/output/02 - Parsing.txt +1 -0
  32. package/config/easy/BijectiveNumeration/output/03 - More Parsing.txt +1 -0
  33. package/config/easy/BijectiveNumeration/output/04 - Simple Generation.txt +1 -0
  34. package/config/easy/BijectiveNumeration/output/05 - Generation.txt +1 -0
  35. package/config/easy/BijectiveNumeration/output/06 - More Generation.txt +1 -0
  36. package/config/easy/BijectiveNumeration/output/07 - Mixed Test.txt +1 -0
  37. package/config/easy/BijectiveNumeration/output/08 - Bigger Test.txt +1 -0
  38. package/config/easy/BijectiveNumeration/output/09 - Huge Test.txt +1 -0
  39. package/config/easy/BouncingSimulator/code/CGCode.js +8 -0
  40. package/config/easy/BouncingSimulator/code/CGCode.php +9 -0
  41. package/config/easy/BouncingSimulator/config.json +58 -0
  42. package/config/easy/BouncingSimulator/input/01 - test 1.txt +3 -0
  43. package/config/easy/BouncingSimulator/input/02 - test 2.txt +3 -0
  44. package/config/easy/BouncingSimulator/input/03 - test 3.txt +3 -0
  45. package/config/easy/BouncingSimulator/input/04 - test 4.txt +3 -0
  46. package/config/easy/BouncingSimulator/input/05 - test 5.txt +3 -0
  47. package/config/easy/BouncingSimulator/input/06 - test 6.txt +3 -0
  48. package/config/easy/BouncingSimulator/input/07 - test 7.txt +3 -0
  49. package/config/easy/BouncingSimulator/input/08 - test 8.txt +3 -0
  50. package/config/easy/BouncingSimulator/input/09 - test 9.txt +3 -0
  51. package/config/easy/BouncingSimulator/input/10 - test 10.txt +3 -0
  52. package/config/easy/BouncingSimulator/output/01 - test 1.txt +5 -0
  53. package/config/easy/BouncingSimulator/output/02 - test 2.txt +8 -0
  54. package/config/easy/BouncingSimulator/output/03 - test 3.txt +5 -0
  55. package/config/easy/BouncingSimulator/output/04 - test 4.txt +9 -0
  56. package/config/easy/BouncingSimulator/output/05 - test 5.txt +27 -0
  57. package/config/easy/BouncingSimulator/output/06 - test 6.txt +9 -0
  58. package/config/easy/BouncingSimulator/output/07 - test 7.txt +13 -0
  59. package/config/easy/BouncingSimulator/output/08 - test 8.txt +5 -0
  60. package/config/easy/BouncingSimulator/output/09 - test 9.txt +11 -0
  61. package/config/easy/BouncingSimulator/output/10 - test 10.txt +3 -0
  62. package/config/easy/FussyFuzzyMatching/code/CGCode.js +16 -0
  63. package/config/easy/FussyFuzzyMatching/code/CGCode.php +19 -0
  64. package/config/easy/FussyFuzzyMatching/config.json +33 -0
  65. package/config/easy/FussyFuzzyMatching/input/01 - Strict.txt +12 -0
  66. package/config/easy/FussyFuzzyMatching/input/02 - letterCase=false, letterFuzz=2.txt +10 -0
  67. package/config/easy/FussyFuzzyMatching/input/03 - numberFuzz.txt +12 -0
  68. package/config/easy/FussyFuzzyMatching/input/04 - otherFuzz=false.txt +10 -0
  69. package/config/easy/FussyFuzzyMatching/input/05 - Put It All Together.txt +13 -0
  70. package/config/easy/FussyFuzzyMatching/output/01 - Strict.txt +6 -0
  71. package/config/easy/FussyFuzzyMatching/output/02 - letterCase=false, letterFuzz=2.txt +4 -0
  72. package/config/easy/FussyFuzzyMatching/output/03 - numberFuzz.txt +6 -0
  73. package/config/easy/FussyFuzzyMatching/output/04 - otherFuzz=false.txt +4 -0
  74. package/config/easy/FussyFuzzyMatching/output/05 - Put It All Together.txt +7 -0
  75. package/config/easy/IslandEscape/code/CGCode.js +12 -0
  76. package/config/easy/IslandEscape/code/CGCode.php +15 -0
  77. package/config/easy/IslandEscape/config.json +73 -0
  78. package/config/easy/IslandEscape/input/01 - Sea stack.txt +4 -0
  79. package/config/easy/IslandEscape/input/02 - Vanishing island.txt +6 -0
  80. package/config/easy/IslandEscape/input/03 - Tiny islet.txt +8 -0
  81. package/config/easy/IslandEscape/input/04 - Plateau.txt +6 -0
  82. package/config/easy/IslandEscape/input/05 - Volcano.txt +8 -0
  83. package/config/easy/IslandEscape/input/06 - Long descent.txt +10 -0
  84. package/config/easy/IslandEscape/input/07 - Cradled valley.txt +8 -0
  85. package/config/easy/IslandEscape/input/08 - Secluded paradise.txt +10 -0
  86. package/config/easy/IslandEscape/input/09 - Secret fortress.txt +12 -0
  87. package/config/easy/IslandEscape/input/10 - Abandoned barracks.txt +12 -0
  88. package/config/easy/IslandEscape/input/11 - Sea fort.txt +12 -0
  89. package/config/easy/IslandEscape/input/12 - Castle.txt +14 -0
  90. package/config/easy/IslandEscape/input/13 - City state.txt +20 -0
  91. package/config/easy/IslandEscape/output/01 - Sea stack.txt +1 -0
  92. package/config/easy/IslandEscape/output/02 - Vanishing island.txt +1 -0
  93. package/config/easy/IslandEscape/output/03 - Tiny islet.txt +1 -0
  94. package/config/easy/IslandEscape/output/04 - Plateau.txt +1 -0
  95. package/config/easy/IslandEscape/output/05 - Volcano.txt +1 -0
  96. package/config/easy/IslandEscape/output/06 - Long descent.txt +1 -0
  97. package/config/easy/IslandEscape/output/07 - Cradled valley.txt +1 -0
  98. package/config/easy/IslandEscape/output/08 - Secluded paradise.txt +1 -0
  99. package/config/easy/IslandEscape/output/09 - Secret fortress.txt +1 -0
  100. package/config/easy/IslandEscape/output/10 - Abandoned barracks.txt +1 -0
  101. package/config/easy/IslandEscape/output/11 - Sea fort.txt +1 -0
  102. package/config/easy/IslandEscape/output/12 - Castle.txt +1 -0
  103. package/config/easy/IslandEscape/output/13 - City state.txt +1 -0
  104. package/config/easy/ItemMaker/code/CGCode.js +6 -0
  105. package/config/easy/ItemMaker/code/CGCode.php +7 -0
  106. package/config/easy/ItemMaker/config.json +33 -0
  107. package/config/easy/ItemMaker/input/01 - Example.txt +1 -0
  108. package/config/easy/ItemMaker/input/02 - Increased rarity.txt +1 -0
  109. package/config/easy/ItemMaker/input/03 - Epic now.txt +1 -0
  110. package/config/easy/ItemMaker/input/04 - Let/342/200/231s Legendary!.txt" +1 -0
  111. package/config/easy/ItemMaker/input/05 - Another one, just for fun.txt +1 -0
  112. package/config/easy/ItemMaker/output/01 - Example.txt +5 -0
  113. package/config/easy/ItemMaker/output/02 - Increased rarity.txt +7 -0
  114. package/config/easy/ItemMaker/output/03 - Epic now.txt +7 -0
  115. package/config/easy/ItemMaker/output/04 - Let/342/200/231s Legendary!.txt" +10 -0
  116. package/config/easy/ItemMaker/output/05 - Another one, just for fun.txt +9 -0
  117. package/config/easy/NDVectorSorting/code/CGCode.js +17 -0
  118. package/config/easy/NDVectorSorting/code/CGCode.php +21 -0
  119. package/config/easy/NDVectorSorting/config.json +33 -0
  120. package/config/easy/NDVectorSorting/input/01 - 2D basic.txt +5 -0
  121. package/config/easy/NDVectorSorting/input/02 - 3D simple (lexical check).txt +9 -0
  122. package/config/easy/NDVectorSorting/input/03 - Quite large number of dimensions & vectors.txt +35 -0
  123. package/config/easy/NDVectorSorting/input/04 - Biggest number of dimensions.txt +6 -0
  124. package/config/easy/NDVectorSorting/input/05 - BiggestNumberOfVectors.txt +67 -0
  125. package/config/easy/NDVectorSorting/output/01 - 2D basic.txt +1 -0
  126. package/config/easy/NDVectorSorting/output/02 - 3D simple (lexical check).txt +1 -0
  127. package/config/easy/NDVectorSorting/output/03 - Quite large number of dimensions & vectors.txt +1 -0
  128. package/config/easy/NDVectorSorting/output/04 - Biggest number of dimensions.txt +1 -0
  129. package/config/easy/NDVectorSorting/output/05 - BiggestNumberOfVectors.txt +1 -0
  130. package/config/easy/NumberOfDigits/code/CGCode.js +7 -0
  131. package/config/easy/NumberOfDigits/code/CGCode.php +8 -0
  132. package/config/easy/NumberOfDigits/config.json +53 -0
  133. package/config/easy/NumberOfDigits/input/01 - n = 12.txt +2 -0
  134. package/config/easy/NumberOfDigits/input/02 - n = 0.txt +2 -0
  135. package/config/easy/NumberOfDigits/input/03 - n = 219.txt +2 -0
  136. package/config/easy/NumberOfDigits/input/04 - n = 4218.txt +2 -0
  137. package/config/easy/NumberOfDigits/input/05 - n = 10000.txt +2 -0
  138. package/config/easy/NumberOfDigits/input/06 - n = 248919.txt +2 -0
  139. package/config/easy/NumberOfDigits/input/07 - n = 841772.txt +2 -0
  140. package/config/easy/NumberOfDigits/input/08 - n = 1283048.txt +2 -0
  141. package/config/easy/NumberOfDigits/input/09 - n = 824883294.txt +2 -0
  142. package/config/easy/NumberOfDigits/output/01 - n = 12.txt +1 -0
  143. package/config/easy/NumberOfDigits/output/02 - n = 0.txt +1 -0
  144. package/config/easy/NumberOfDigits/output/03 - n = 219.txt +1 -0
  145. package/config/easy/NumberOfDigits/output/04 - n = 4218.txt +1 -0
  146. package/config/easy/NumberOfDigits/output/05 - n = 10000.txt +1 -0
  147. package/config/easy/NumberOfDigits/output/06 - n = 248919.txt +1 -0
  148. package/config/easy/NumberOfDigits/output/07 - n = 841772.txt +1 -0
  149. package/config/easy/NumberOfDigits/output/08 - n = 1283048.txt +1 -0
  150. package/config/easy/NumberOfDigits/output/09 - n = 824883294.txt +1 -0
  151. package/config/easy/OddQuadOut/code/CGCode.js +11 -0
  152. package/config/easy/OddQuadOut/code/CGCode.php +13 -0
  153. package/config/easy/OddQuadOut/config.json +38 -0
  154. package/config/easy/OddQuadOut/input/01 - test 1.txt +5 -0
  155. package/config/easy/OddQuadOut/input/02 - test 2.txt +7 -0
  156. package/config/easy/OddQuadOut/input/03 - test 3.txt +11 -0
  157. package/config/easy/OddQuadOut/input/04 - test 4.txt +15 -0
  158. package/config/easy/OddQuadOut/input/05 - test 5.txt +23 -0
  159. package/config/easy/OddQuadOut/input/06 - test 6.txt +27 -0
  160. package/config/easy/OddQuadOut/output/01 - test 1.txt +3 -0
  161. package/config/easy/OddQuadOut/output/02 - test 2.txt +3 -0
  162. package/config/easy/OddQuadOut/output/03 - test 3.txt +3 -0
  163. package/config/easy/OddQuadOut/output/04 - test 4.txt +3 -0
  164. package/config/easy/OddQuadOut/output/05 - test 5.txt +3 -0
  165. package/config/easy/OddQuadOut/output/06 - test 6.txt +3 -0
  166. package/config/easy/PlayingCardOdds/code/CGCode.js +14 -0
  167. package/config/easy/PlayingCardOdds/code/CGCode.php +15 -0
  168. package/config/easy/PlayingCardOdds/config.json +53 -0
  169. package/config/easy/PlayingCardOdds/input/01 - Example 1.txt +3 -0
  170. package/config/easy/PlayingCardOdds/input/02 - Example 2.txt +4 -0
  171. package/config/easy/PlayingCardOdds/input/03 - Crazy eights.txt +3 -0
  172. package/config/easy/PlayingCardOdds/input/04 - Trump or face card.txt +6 -0
  173. package/config/easy/PlayingCardOdds/input/05 - Impossible.txt +6 -0
  174. package/config/easy/PlayingCardOdds/input/06 - A lock.txt +6 -0
  175. package/config/easy/PlayingCardOdds/input/07 - Full deck.txt +2 -0
  176. package/config/easy/PlayingCardOdds/input/08 - Mixture.txt +11 -0
  177. package/config/easy/PlayingCardOdds/input/09 - Decimation.txt +7 -0
  178. package/config/easy/PlayingCardOdds/output/01 - Example 1.txt +1 -0
  179. package/config/easy/PlayingCardOdds/output/02 - Example 2.txt +1 -0
  180. package/config/easy/PlayingCardOdds/output/03 - Crazy eights.txt +1 -0
  181. package/config/easy/PlayingCardOdds/output/04 - Trump or face card.txt +1 -0
  182. package/config/easy/PlayingCardOdds/output/05 - Impossible.txt +1 -0
  183. package/config/easy/PlayingCardOdds/output/06 - A lock.txt +1 -0
  184. package/config/easy/PlayingCardOdds/output/07 - Full deck.txt +1 -0
  185. package/config/easy/PlayingCardOdds/output/08 - Mixture.txt +1 -0
  186. package/config/easy/PlayingCardOdds/output/09 - Decimation.txt +1 -0
  187. package/config/easy/SandFall/code/CGCode.js +14 -0
  188. package/config/easy/SandFall/code/CGCode.php +12 -0
  189. package/config/easy/SandFall/config.json +53 -0
  190. package/config/easy/SandFall/input/01 - Example.txt +6 -0
  191. package/config/easy/SandFall/input/02 - Wall Hug.txt +10 -0
  192. package/config/easy/SandFall/input/03 - Single Pile.txt +18 -0
  193. package/config/easy/SandFall/input/04 - Close Fit.txt +6 -0
  194. package/config/easy/SandFall/input/05 - Fibo.txt +90 -0
  195. package/config/easy/SandFall/input/06 - Pop Culture.txt +71 -0
  196. package/config/easy/SandFall/input/07 - Chess - Italian opening.txt +66 -0
  197. package/config/easy/SandFall/input/08 - Landscape.txt +194 -0
  198. package/config/easy/SandFall/input/09 - Big Box.txt +204 -0
  199. package/config/easy/SandFall/output/01 - Example.txt +4 -0
  200. package/config/easy/SandFall/output/02 - Wall Hug.txt +5 -0
  201. package/config/easy/SandFall/output/03 - Single Pile.txt +7 -0
  202. package/config/easy/SandFall/output/04 - Close Fit.txt +3 -0
  203. package/config/easy/SandFall/output/05 - Fibo.txt +6 -0
  204. package/config/easy/SandFall/output/06 - Pop Culture.txt +10 -0
  205. package/config/easy/SandFall/output/07 - Chess - Italian opening.txt +9 -0
  206. package/config/easy/SandFall/output/08 - Landscape.txt +11 -0
  207. package/config/easy/SandFall/output/09 - Big Box.txt +16 -0
  208. package/config/easy/SparseMatMul/code/CGCode.js +24 -0
  209. package/config/easy/SparseMatMul/code/CGCode.php +16 -0
  210. package/config/easy/SparseMatMul/config.json +38 -0
  211. package/config/easy/SparseMatMul/input/01 - Example.txt +7 -0
  212. package/config/easy/SparseMatMul/input/02 - Corners.txt +10 -0
  213. package/config/easy/SparseMatMul/input/03 - Dense.txt +20 -0
  214. package/config/easy/SparseMatMul/input/04 - Cancelation.txt +12 -0
  215. package/config/easy/SparseMatMul/input/05 - Banded.txt +56 -0
  216. package/config/easy/SparseMatMul/input/06 - Supertask.txt +63 -0
  217. package/config/easy/SparseMatMul/output/01 - Example.txt +1 -0
  218. package/config/easy/SparseMatMul/output/02 - Corners.txt +4 -0
  219. package/config/easy/SparseMatMul/output/03 - Dense.txt +81 -0
  220. package/config/easy/SparseMatMul/output/04 - Cancelation.txt +2 -0
  221. package/config/easy/SparseMatMul/output/05 - Banded.txt +43 -0
  222. package/config/easy/SparseMatMul/output/06 - Supertask.txt +41 -0
  223. package/config/easy/TBROutOfControl/code/CGCode.js +13 -0
  224. package/config/easy/TBROutOfControl/code/CGCode.php +16 -0
  225. package/config/easy/TBROutOfControl/config.json +58 -0
  226. package/config/easy/TBROutOfControl/input/01 - Simple case.txt +9 -0
  227. package/config/easy/TBROutOfControl/input/02 - Long TBR.txt +16 -0
  228. package/config/easy/TBROutOfControl/input/03 - Small bookshelf.txt +4 -0
  229. package/config/easy/TBROutOfControl/input/04 - Duplicate.txt +16 -0
  230. package/config/easy/TBROutOfControl/input/05 - New space.txt +16 -0
  231. package/config/easy/TBROutOfControl/input/06 - Favorite books.txt +8 -0
  232. package/config/easy/TBROutOfControl/input/07 - Duplicate is favorite.txt +16 -0
  233. package/config/easy/TBROutOfControl/input/08 - Duplicate again....txt +20 -0
  234. package/config/easy/TBROutOfControl/input/09 - test 9.txt +16 -0
  235. package/config/easy/TBROutOfControl/input/10 - test 10.txt +17 -0
  236. package/config/easy/TBROutOfControl/output/01 - Simple case.txt +5 -0
  237. package/config/easy/TBROutOfControl/output/02 - Long TBR.txt +1 -0
  238. package/config/easy/TBROutOfControl/output/03 - Small bookshelf.txt +1 -0
  239. package/config/easy/TBROutOfControl/output/04 - Duplicate.txt +10 -0
  240. package/config/easy/TBROutOfControl/output/05 - New space.txt +9 -0
  241. package/config/easy/TBROutOfControl/output/06 - Favorite books.txt +1 -0
  242. package/config/easy/TBROutOfControl/output/07 - Duplicate is favorite.txt +10 -0
  243. package/config/easy/TBROutOfControl/output/08 - Duplicate again....txt +14 -0
  244. package/config/easy/TBROutOfControl/output/09 - test 9.txt +10 -0
  245. package/config/easy/TBROutOfControl/output/10 - test 10.txt +10 -0
  246. package/config/easy/TriangleToggle/config.json +1 -1
  247. package/config/hard/Advertisements/code/CGCode.js +17 -0
  248. package/config/hard/Advertisements/code/CGCode.php +16 -0
  249. package/config/hard/Advertisements/config.json +118 -0
  250. package/config/hard/Advertisements/input/01 - Product advertisement.txt +8 -0
  251. package/config/hard/Advertisements/input/02 - Brand advertisement.txt +9 -0
  252. package/config/hard/Advertisements/input/03 - It/342/200/231s not all about the advertisement.txt" +17 -0
  253. package/config/hard/Advertisements/input/04 - Smart customer.txt +23 -0
  254. package/config/hard/Advertisements/input/05 - Stupid customer.txt +13 -0
  255. package/config/hard/Advertisements/input/06 - A good textile deal.txt +9 -0
  256. package/config/hard/Advertisements/input/07 - A bad textile deal.txt +9 -0
  257. package/config/hard/Advertisements/input/08 - Good for business.txt +11 -0
  258. package/config/hard/Advertisements/input/09 - For free!.txt +9 -0
  259. package/config/hard/Advertisements/input/10 - Multiple advertisements.txt +25 -0
  260. package/config/hard/Advertisements/input/11 - A lot of advertisements.txt +64 -0
  261. package/config/hard/Advertisements/input/12 - Which of the two.txt +10 -0
  262. package/config/hard/Advertisements/input/13 - Mix and match.txt +26 -0
  263. package/config/hard/Advertisements/input/14 - Leave some for the other one.txt +17 -0
  264. package/config/hard/Advertisements/input/15 - Leave the best to the next 1.txt +11 -0
  265. package/config/hard/Advertisements/input/16 - Leave the best to the next 2.txt +13 -0
  266. package/config/hard/Advertisements/input/17 - Leave the best to the next 3.txt +16 -0
  267. package/config/hard/Advertisements/input/18 - Leave the worst to the next 1.txt +10 -0
  268. package/config/hard/Advertisements/input/19 - Leave the worst to the next 2.txt +10 -0
  269. package/config/hard/Advertisements/input/20 - The absolute best is against rule 4.txt +12 -0
  270. package/config/hard/Advertisements/input/21 - Dessert and clothing day.txt +22 -0
  271. package/config/hard/Advertisements/input/22 - Action Action!.txt +64 -0
  272. package/config/hard/Advertisements/output/01 - Product advertisement.txt +2 -0
  273. package/config/hard/Advertisements/output/02 - Brand advertisement.txt +2 -0
  274. package/config/hard/Advertisements/output/03 - It/342/200/231s not all about the advertisement.txt" +2 -0
  275. package/config/hard/Advertisements/output/04 - Smart customer.txt +2 -0
  276. package/config/hard/Advertisements/output/05 - Stupid customer.txt +2 -0
  277. package/config/hard/Advertisements/output/06 - A good textile deal.txt +2 -0
  278. package/config/hard/Advertisements/output/07 - A bad textile deal.txt +2 -0
  279. package/config/hard/Advertisements/output/08 - Good for business.txt +2 -0
  280. package/config/hard/Advertisements/output/09 - For free!.txt +2 -0
  281. package/config/hard/Advertisements/output/10 - Multiple advertisements.txt +2 -0
  282. package/config/hard/Advertisements/output/11 - A lot of advertisements.txt +2 -0
  283. package/config/hard/Advertisements/output/12 - Which of the two.txt +2 -0
  284. package/config/hard/Advertisements/output/13 - Mix and match.txt +2 -0
  285. package/config/hard/Advertisements/output/14 - Leave some for the other one.txt +2 -0
  286. package/config/hard/Advertisements/output/15 - Leave the best to the next 1.txt +2 -0
  287. package/config/hard/Advertisements/output/16 - Leave the best to the next 2.txt +2 -0
  288. package/config/hard/Advertisements/output/17 - Leave the best to the next 3.txt +2 -0
  289. package/config/hard/Advertisements/output/18 - Leave the worst to the next 1.txt +2 -0
  290. package/config/hard/Advertisements/output/19 - Leave the worst to the next 2.txt +2 -0
  291. package/config/hard/Advertisements/output/20 - The absolute best is against rule 4.txt +2 -0
  292. package/config/hard/Advertisements/output/21 - Dessert and clothing day.txt +2 -0
  293. package/config/hard/Advertisements/output/22 - Action Action!.txt +2 -0
  294. package/config/hard/BreakingBifid/code/CGCode.js +8 -0
  295. package/config/hard/BreakingBifid/code/CGCode.php +9 -0
  296. package/config/hard/BreakingBifid/config.json +33 -0
  297. package/config/hard/BreakingBifid/input/01 - Long text.txt +3 -0
  298. package/config/hard/BreakingBifid/input/02 - Pangram.txt +3 -0
  299. package/config/hard/BreakingBifid/input/03 - Medium length text.txt +3 -0
  300. package/config/hard/BreakingBifid/input/04 - ShortText.txt +3 -0
  301. package/config/hard/BreakingBifid/input/05 - Minimal text.txt +3 -0
  302. package/config/hard/BreakingBifid/output/01 - Long text.txt +1 -0
  303. package/config/hard/BreakingBifid/output/02 - Pangram.txt +1 -0
  304. package/config/hard/BreakingBifid/output/03 - Medium length text.txt +1 -0
  305. package/config/hard/BreakingBifid/output/04 - ShortText.txt +1 -0
  306. package/config/hard/BreakingBifid/output/05 - Minimal text.txt +1 -0
  307. package/config/hard/ConditionalProbabilities/code/CGCode.js +8 -0
  308. package/config/hard/ConditionalProbabilities/code/CGCode.php +9 -0
  309. package/config/hard/ConditionalProbabilities/config.json +38 -0
  310. package/config/hard/ConditionalProbabilities/input/01 - A, B, A AND B.txt +3 -0
  311. package/config/hard/ConditionalProbabilities/input/02 - A, NOT B, NOT A AND B.txt +3 -0
  312. package/config/hard/ConditionalProbabilities/input/03 - A, B GIVEN A, B GIVEN NOT A.txt +3 -0
  313. package/config/hard/ConditionalProbabilities/input/04 - A AND B, NOT A AND B, A AND NOT B.txt +3 -0
  314. package/config/hard/ConditionalProbabilities/input/05 - Not enough values.txt +3 -0
  315. package/config/hard/ConditionalProbabilities/input/06 - Impossible.txt +3 -0
  316. package/config/hard/ConditionalProbabilities/output/01 - A, B, A AND B.txt +16 -0
  317. package/config/hard/ConditionalProbabilities/output/02 - A, NOT B, NOT A AND B.txt +16 -0
  318. package/config/hard/ConditionalProbabilities/output/03 - A, B GIVEN A, B GIVEN NOT A.txt +16 -0
  319. package/config/hard/ConditionalProbabilities/output/04 - A AND B, NOT A AND B, A AND NOT B.txt +16 -0
  320. package/config/hard/ConditionalProbabilities/output/05 - Not enough values.txt +6 -0
  321. package/config/hard/ConditionalProbabilities/output/06 - Impossible.txt +1 -0
  322. package/config/hard/CounterAttack/code/CGCode.js +12 -0
  323. package/config/hard/CounterAttack/code/CGCode.php +15 -0
  324. package/config/hard/CounterAttack/config.json +68 -0
  325. package/config/hard/CounterAttack/input/01 - test 1.txt +2 -0
  326. package/config/hard/CounterAttack/input/02 - test 2.txt +2 -0
  327. package/config/hard/CounterAttack/input/03 - test 3.txt +2 -0
  328. package/config/hard/CounterAttack/input/04 - test 4.txt +2 -0
  329. package/config/hard/CounterAttack/input/05 - test 5.txt +2 -0
  330. package/config/hard/CounterAttack/input/06 - test 6.txt +2 -0
  331. package/config/hard/CounterAttack/input/07 - test 7.txt +2 -0
  332. package/config/hard/CounterAttack/input/08 - test 8.txt +2 -0
  333. package/config/hard/CounterAttack/input/09 - test 9.txt +2 -0
  334. package/config/hard/CounterAttack/input/10 - test 10.txt +2 -0
  335. package/config/hard/CounterAttack/input/11 - test 11.txt +2 -0
  336. package/config/hard/CounterAttack/input/12 - test 12.txt +2 -0
  337. package/config/hard/CounterAttack/output/01 - test 1.txt +7 -0
  338. package/config/hard/CounterAttack/output/02 - test 2.txt +1 -0
  339. package/config/hard/CounterAttack/output/03 - test 3.txt +5 -0
  340. package/config/hard/CounterAttack/output/04 - test 4.txt +5 -0
  341. package/config/hard/CounterAttack/output/05 - test 5.txt +10 -0
  342. package/config/hard/CounterAttack/output/06 - test 6.txt +10 -0
  343. package/config/hard/CounterAttack/output/07 - test 7.txt +90 -0
  344. package/config/hard/CounterAttack/output/08 - test 8.txt +100 -0
  345. package/config/hard/CounterAttack/output/09 - test 9.txt +100 -0
  346. package/config/hard/CounterAttack/output/10 - test 10.txt +100 -0
  347. package/config/hard/CounterAttack/output/11 - test 11.txt +50 -0
  348. package/config/hard/CounterAttack/output/12 - test 12.txt +25 -0
  349. package/config/hard/DerivativeTimePart2/code/CGCode.js +8 -0
  350. package/config/hard/DerivativeTimePart2/code/CGCode.php +9 -0
  351. package/config/hard/DerivativeTimePart2/config.json +43 -0
  352. package/config/hard/DerivativeTimePart2/input/01 - crazy ln chain.txt +3 -0
  353. package/config/hard/DerivativeTimePart2/input/02 - interesting powers.txt +3 -0
  354. package/config/hard/DerivativeTimePart2/input/03 - 2nd deriv.txt +3 -0
  355. package/config/hard/DerivativeTimePart2/input/04 - fraction.txt +3 -0
  356. package/config/hard/DerivativeTimePart2/input/05 - 3rd.txt +3 -0
  357. package/config/hard/DerivativeTimePart2/input/06 - parse.txt +3 -0
  358. package/config/hard/DerivativeTimePart2/input/07 - diversified vars.txt +3 -0
  359. package/config/hard/DerivativeTimePart2/output/01 - crazy ln chain.txt +1 -0
  360. package/config/hard/DerivativeTimePart2/output/02 - interesting powers.txt +1 -0
  361. package/config/hard/DerivativeTimePart2/output/03 - 2nd deriv.txt +1 -0
  362. package/config/hard/DerivativeTimePart2/output/04 - fraction.txt +1 -0
  363. package/config/hard/DerivativeTimePart2/output/05 - 3rd.txt +1 -0
  364. package/config/hard/DerivativeTimePart2/output/06 - parse.txt +1 -0
  365. package/config/hard/DerivativeTimePart2/output/07 - diversified vars.txt +1 -0
  366. package/config/hard/FoldAndCut/code/CGCode.js +6 -0
  367. package/config/hard/FoldAndCut/code/CGCode.php +7 -0
  368. package/config/hard/FoldAndCut/config.json +53 -0
  369. package/config/hard/FoldAndCut/input/01 - test 1.txt +1 -0
  370. package/config/hard/FoldAndCut/input/02 - test 2.txt +1 -0
  371. package/config/hard/FoldAndCut/input/03 - test 3.txt +1 -0
  372. package/config/hard/FoldAndCut/input/04 - test 4.txt +1 -0
  373. package/config/hard/FoldAndCut/input/05 - test 5.txt +1 -0
  374. package/config/hard/FoldAndCut/input/06 - test 6.txt +1 -0
  375. package/config/hard/FoldAndCut/input/07 - test 7.txt +1 -0
  376. package/config/hard/FoldAndCut/input/08 - test 8.txt +1 -0
  377. package/config/hard/FoldAndCut/input/09 - test 9.txt +1 -0
  378. package/config/hard/FoldAndCut/output/01 - test 1.txt +1 -0
  379. package/config/hard/FoldAndCut/output/02 - test 2.txt +1 -0
  380. package/config/hard/FoldAndCut/output/04 - test 4.txt +1 -0
  381. package/config/hard/FoldAndCut/output/05 - test 5.txt +1 -0
  382. package/config/hard/FoldAndCut/output/06 - test 6.txt +1 -0
  383. package/config/hard/FoldAndCut/output/07 - test 7.txt +1 -0
  384. package/config/hard/FoldAndCut/output/08 - test 8.txt +1 -0
  385. package/config/hard/FoldAndCut/output/09 - test 9.txt +1 -0
  386. package/config/hard/KakuroSolver/code/CGCode.js +11 -0
  387. package/config/hard/KakuroSolver/code/CGCode.php +11 -0
  388. package/config/hard/KakuroSolver/config.json +53 -0
  389. package/config/hard/KakuroSolver/input/01 - Example 1 (3 x 3).txt +4 -0
  390. package/config/hard/KakuroSolver/input/02 - Test 2 (4 x 4).txt +5 -0
  391. package/config/hard/KakuroSolver/input/03 - Test 3 (1 x 3).txt +2 -0
  392. package/config/hard/KakuroSolver/input/04 - Example 2 (5 x 5).txt +6 -0
  393. package/config/hard/KakuroSolver/input/05 - Test 5 (9 x 8).txt +10 -0
  394. package/config/hard/KakuroSolver/input/06 - Test 6 (9 x 9).txt +10 -0
  395. package/config/hard/KakuroSolver/input/07 - Test 7 (12 x 10).txt +13 -0
  396. package/config/hard/KakuroSolver/input/08 - Test 8 (18 x 10).txt +19 -0
  397. package/config/hard/KakuroSolver/input/09 - Test 9 (15 x 15).txt +16 -0
  398. package/config/hard/KakuroSolver/output/01 - Example 1 (3 x 3).txt +3 -0
  399. package/config/hard/KakuroSolver/output/02 - Test 2 (4 x 4).txt +4 -0
  400. package/config/hard/KakuroSolver/output/03 - Test 3 (1 x 3).txt +1 -0
  401. package/config/hard/KakuroSolver/output/04 - Example 2 (5 x 5).txt +5 -0
  402. package/config/hard/KakuroSolver/output/05 - Test 5 (9 x 8).txt +9 -0
  403. package/config/hard/KakuroSolver/output/06 - Test 6 (9 x 9).txt +9 -0
  404. package/config/hard/KakuroSolver/output/07 - Test 7 (12 x 10).txt +12 -0
  405. package/config/hard/KakuroSolver/output/08 - Test 8 (18 x 10).txt +18 -0
  406. package/config/hard/KakuroSolver/output/09 - Test 9 (15 x 15).txt +15 -0
  407. package/config/hard/KillerSudokuExtremeChallenge/code/CGCode.js +14 -0
  408. package/config/hard/KillerSudokuExtremeChallenge/code/CGCode.php +18 -0
  409. package/config/hard/KillerSudokuExtremeChallenge/config.json +43 -0
  410. package/config/hard/KillerSudokuExtremeChallenge/input/01 - 1 Puzzle - Easy.txt +3 -0
  411. package/config/hard/KillerSudokuExtremeChallenge/input/02 - 1 Hard Puzzle - Fewer Cages.txt +3 -0
  412. package/config/hard/KillerSudokuExtremeChallenge/input/03 - 2 Puzzles.txt +5 -0
  413. package/config/hard/KillerSudokuExtremeChallenge/input/04 - 8 Puzzles.txt +17 -0
  414. package/config/hard/KillerSudokuExtremeChallenge/input/05 - 16 Puzzles.txt +33 -0
  415. package/config/hard/KillerSudokuExtremeChallenge/input/06 - 32 Puzzles.txt +65 -0
  416. package/config/hard/KillerSudokuExtremeChallenge/input/07 - 40 Puzzles.txt +81 -0
  417. package/config/hard/KillerSudokuExtremeChallenge/output/01 - 1 Puzzle - Easy.txt +9 -0
  418. package/config/hard/KillerSudokuExtremeChallenge/output/02 - 1 Hard Puzzle - Fewer Cages.txt +9 -0
  419. package/config/hard/KillerSudokuExtremeChallenge/output/03 - 2 Puzzles.txt +9 -0
  420. package/config/hard/KillerSudokuExtremeChallenge/output/04 - 8 Puzzles.txt +9 -0
  421. package/config/hard/KillerSudokuExtremeChallenge/output/05 - 16 Puzzles.txt +9 -0
  422. package/config/hard/KillerSudokuExtremeChallenge/output/06 - 32 Puzzles.txt +9 -0
  423. package/config/hard/KillerSudokuExtremeChallenge/output/07 - 40 Puzzles.txt +9 -0
  424. package/config/hard/LetsMakeACheapASCII3DEngine/code/CGCode.js +8 -0
  425. package/config/hard/LetsMakeACheapASCII3DEngine/code/CGCode.php +7 -0
  426. package/config/hard/LetsMakeACheapASCII3DEngine/config.json +28 -0
  427. package/config/hard/LetsMakeACheapASCII3DEngine/input/01 - test 1.txt +9 -0
  428. package/config/hard/LetsMakeACheapASCII3DEngine/input/02 - test 2.txt +22 -0
  429. package/config/hard/LetsMakeACheapASCII3DEngine/input/03 - test 3.txt +22 -0
  430. package/config/hard/LetsMakeACheapASCII3DEngine/input/04 - test 4.txt +22 -0
  431. package/config/hard/LetsMakeACheapASCII3DEngine/output/01 - test 1.txt +15 -0
  432. package/config/hard/LetsMakeACheapASCII3DEngine/output/02 - test 2.txt +15 -0
  433. package/config/hard/LetsMakeACheapASCII3DEngine/output/03 - test 3.txt +15 -0
  434. package/config/hard/LetsMakeACheapASCII3DEngine/output/04 - test 4.txt +15 -0
  435. package/config/hard/MARIAndTheCrazyFactory/code/CGCode.js +9 -0
  436. package/config/hard/MARIAndTheCrazyFactory/code/CGCode.php +11 -0
  437. package/config/hard/MARIAndTheCrazyFactory/config.json +73 -0
  438. package/config/hard/MARIAndTheCrazyFactory/input/01 - Go straight ahead/342/200/246 or maybe not.txt" +8 -0
  439. package/config/hard/MARIAndTheCrazyFactory/input/02 - Straight ahead and nop.txt +8 -0
  440. package/config/hard/MARIAndTheCrazyFactory/input/03 - Turn right.txt +8 -0
  441. package/config/hard/MARIAndTheCrazyFactory/input/04 - A bit harder.txt +8 -0
  442. package/config/hard/MARIAndTheCrazyFactory/input/05 - With break.txt +8 -0
  443. package/config/hard/MARIAndTheCrazyFactory/input/06 - Starts with a not empty set.txt +8 -0
  444. package/config/hard/MARIAndTheCrazyFactory/input/07 - Repeat next instruction.txt +8 -0
  445. package/config/hard/MARIAndTheCrazyFactory/input/08 - Random puzzle.txt +8 -0
  446. package/config/hard/MARIAndTheCrazyFactory/input/09 - Someone lost a piece.txt +8 -0
  447. package/config/hard/MARIAndTheCrazyFactory/input/10 - A key on the ground.txt +8 -0
  448. package/config/hard/MARIAndTheCrazyFactory/input/11 - Open the door tyrannosaur.txt +8 -0
  449. package/config/hard/MARIAndTheCrazyFactory/input/12 - Drunken M.A.R.I..txt +8 -0
  450. package/config/hard/MARIAndTheCrazyFactory/input/13 - To the central command.txt +8 -0
  451. package/config/hard/MARIAndTheCrazyFactory/output/01 - Go straight ahead/342/200/246 or maybe not.txt" +3 -0
  452. package/config/hard/MARIAndTheCrazyFactory/output/02 - Straight ahead and nop.txt +3 -0
  453. package/config/hard/MARIAndTheCrazyFactory/output/03 - Turn right.txt +4 -0
  454. package/config/hard/MARIAndTheCrazyFactory/output/04 - A bit harder.txt +4 -0
  455. package/config/hard/MARIAndTheCrazyFactory/output/05 - With break.txt +5 -0
  456. package/config/hard/MARIAndTheCrazyFactory/output/06 - Starts with a not empty set.txt +3 -0
  457. package/config/hard/MARIAndTheCrazyFactory/output/07 - Repeat next instruction.txt +4 -0
  458. package/config/hard/MARIAndTheCrazyFactory/output/08 - Random puzzle.txt +5 -0
  459. package/config/hard/MARIAndTheCrazyFactory/output/09 - Someone lost a piece.txt +3 -0
  460. package/config/hard/MARIAndTheCrazyFactory/output/10 - A key on the ground.txt +4 -0
  461. package/config/hard/MARIAndTheCrazyFactory/output/11 - Open the door tyrannosaur.txt +5 -0
  462. package/config/hard/MARIAndTheCrazyFactory/output/12 - Drunken M.A.R.I..txt +4 -0
  463. package/config/hard/MARIAndTheCrazyFactory/output/13 - To the central command.txt +5 -0
  464. package/config/hard/MindCracker/code/CGCode.js +14 -0
  465. package/config/hard/MindCracker/code/CGCode.php +13 -0
  466. package/config/hard/MindCracker/config.json +53 -0
  467. package/config/hard/MindCracker/input/01 - 27 combinations 2 lines.txt +5 -0
  468. package/config/hard/MindCracker/input/02 - 256 combinations 4 line.txt +7 -0
  469. package/config/hard/MindCracker/input/03 - 3125 combinations 5 line.txt +8 -0
  470. package/config/hard/MindCracker/input/04 - 531441 combinations 6 lines.txt +9 -0
  471. package/config/hard/MindCracker/input/05 - 2097152 combinations 7 lines.txt +10 -0
  472. package/config/hard/MindCracker/input/06 - 10000000 combinations 10 lines.txt +13 -0
  473. package/config/hard/MindCracker/input/07 - 100000000 combinations 11 lines.txt +14 -0
  474. package/config/hard/MindCracker/input/08 - 100000000 combinations 11 lines (2).txt +14 -0
  475. package/config/hard/MindCracker/input/09 - 100000000 combinations 11 lines (3).txt +14 -0
  476. package/config/hard/MindCracker/output/01 - 27 combinations 2 lines.txt +1 -0
  477. package/config/hard/MindCracker/output/02 - 256 combinations 4 line.txt +1 -0
  478. package/config/hard/MindCracker/output/03 - 3125 combinations 5 line.txt +1 -0
  479. package/config/hard/MindCracker/output/04 - 531441 combinations 6 lines.txt +1 -0
  480. package/config/hard/MindCracker/output/05 - 2097152 combinations 7 lines.txt +1 -0
  481. package/config/hard/MindCracker/output/06 - 10000000 combinations 10 lines.txt +1 -0
  482. package/config/hard/MindCracker/output/07 - 100000000 combinations 11 lines.txt +1 -0
  483. package/config/hard/MindCracker/output/08 - 100000000 combinations 11 lines (2).txt +1 -0
  484. package/config/hard/MindCracker/output/09 - 100000000 combinations 11 lines (3).txt +1 -0
  485. package/config/hard/NonogramInversor/code/CGCode.js +17 -0
  486. package/config/hard/NonogramInversor/code/CGCode.php +19 -0
  487. package/config/hard/NonogramInversor/config.json +33 -0
  488. package/config/hard/NonogramInversor/input/01 - test 1 - Dog.txt +11 -0
  489. package/config/hard/NonogramInversor/input/02 - test 2 - Music.txt +21 -0
  490. package/config/hard/NonogramInversor/input/03 - test 3 - Africa +31 -0
  491. package/config/hard/NonogramInversor/input/04 - test 4 - Cat.txt +36 -0
  492. package/config/hard/NonogramInversor/input/05 - test 5 - Dolphin.txt +41 -0
  493. package/config/hard/NonogramInversor/output/01 - test 1 - Dog.txt +10 -0
  494. package/config/hard/NonogramInversor/output/02 - test 2 - Music.txt +20 -0
  495. package/config/hard/NonogramInversor/output/03 - test 3 - Africa +30 -0
  496. package/config/hard/NonogramInversor/output/04 - test 4 - Cat.txt +35 -0
  497. package/config/hard/NonogramInversor/output/05 - test 5 - Dolphin.txt +40 -0
  498. package/config/hard/PicturePuzzle/code/CGCode.js +21 -0
  499. package/config/hard/PicturePuzzle/code/CGCode.php +25 -0
  500. package/config/hard/PicturePuzzle/config.json +48 -0
  501. package/config/hard/PicturePuzzle/input/01 - test 1.txt +19 -0
  502. package/config/hard/PicturePuzzle/input/02 - test 2.txt +453 -0
  503. package/config/hard/PicturePuzzle/input/03 - test 3.txt +201 -0
  504. package/config/hard/PicturePuzzle/input/04 - test 4.txt +195 -0
  505. package/config/hard/PicturePuzzle/input/05 - test 5.txt +19 -0
  506. package/config/hard/PicturePuzzle/input/06 - test 6.txt +453 -0
  507. package/config/hard/PicturePuzzle/input/07 - test 7.txt +201 -0
  508. package/config/hard/PicturePuzzle/input/08 - test 8.txt +195 -0
  509. package/config/hard/PicturePuzzle/output/01 - test 1.txt +7 -0
  510. package/config/hard/PicturePuzzle/output/02 - test 2.txt +16 -0
  511. package/config/hard/PicturePuzzle/output/03 - test 3.txt +16 -0
  512. package/config/hard/PicturePuzzle/output/04 - test 4.txt +21 -0
  513. package/config/hard/PicturePuzzle/output/05 - test 5.txt +7 -0
  514. package/config/hard/PicturePuzzle/output/06 - test 6.txt +16 -0
  515. package/config/hard/PicturePuzzle/output/07 - test 7.txt +16 -0
  516. package/config/hard/PicturePuzzle/output/08 - test 8.txt +21 -0
  517. package/config/hard/Rummikub2/code/CGCode.js +11 -0
  518. package/config/hard/Rummikub2/code/CGCode.php +13 -0
  519. package/config/hard/Rummikub2/config.json +103 -0
  520. package/config/hard/Rummikub2/input/01 - Multiple takes.txt +7 -0
  521. package/config/hard/Rummikub2/input/02 - A lot of actions.txt +12 -0
  522. package/config/hard/Rummikub2/input/03 - A lot of actions 2.txt +13 -0
  523. package/config/hard/Rummikub2/input/04 - A lot is irrelevant.txt +20 -0
  524. package/config/hard/Rummikub2/input/05 - A lot of actions and extra.txt +19 -0
  525. package/config/hard/Rummikub2/input/06 - Joker.txt +3 -0
  526. package/config/hard/Rummikub2/input/07 - Joker in set.txt +5 -0
  527. package/config/hard/Rummikub2/input/08 - Joker outside.txt +4 -0
  528. package/config/hard/Rummikub2/input/09 - Joker inside.txt +6 -0
  529. package/config/hard/Rummikub2/input/10 - Joke(r).txt +5 -0
  530. package/config/hard/Rummikub2/input/11 - Don/342/200/231t use the joker.txt" +5 -0
  531. package/config/hard/Rummikub2/input/12 - Get that joker.txt +5 -0
  532. package/config/hard/Rummikub2/input/13 - Joker as early as possible.txt +6 -0
  533. package/config/hard/Rummikub2/input/14 - With J is better.txt +11 -0
  534. package/config/hard/Rummikub2/input/15 - Joker combine.txt +6 -0
  535. package/config/hard/Rummikub2/input/16 - Multiple takes with J.txt +7 -0
  536. package/config/hard/Rummikub2/input/17 - A lot of actions with J.txt +12 -0
  537. package/config/hard/Rummikub2/input/18 - A bit of everything.txt +11 -0
  538. package/config/hard/Rummikub2/input/19 - Many paths to explore.txt +21 -0
  539. package/config/hard/Rummikub2/output/01 - Multiple takes.txt +18 -0
  540. package/config/hard/Rummikub2/output/02 - A lot of actions.txt +29 -0
  541. package/config/hard/Rummikub2/output/03 - A lot of actions 2.txt +12 -0
  542. package/config/hard/Rummikub2/output/04 - A lot is irrelevant.txt +31 -0
  543. package/config/hard/Rummikub2/output/05 - A lot of actions and extra.txt +40 -0
  544. package/config/hard/Rummikub2/output/06 - Joker.txt +2 -0
  545. package/config/hard/Rummikub2/output/07 - Joker in set.txt +9 -0
  546. package/config/hard/Rummikub2/output/08 - Joker outside.txt +6 -0
  547. package/config/hard/Rummikub2/output/09 - Joker inside.txt +8 -0
  548. package/config/hard/Rummikub2/output/10 - Joke(r).txt +4 -0
  549. package/config/hard/Rummikub2/output/11 - Don/342/200/231t use the joker.txt" +6 -0
  550. package/config/hard/Rummikub2/output/12 - Get that joker.txt +8 -0
  551. package/config/hard/Rummikub2/output/13 - Joker as early as possible.txt +12 -0
  552. package/config/hard/Rummikub2/output/14 - With J is better.txt +18 -0
  553. package/config/hard/Rummikub2/output/15 - Joker combine.txt +7 -0
  554. package/config/hard/Rummikub2/output/16 - Multiple takes with J.txt +18 -0
  555. package/config/hard/Rummikub2/output/17 - A lot of actions with J.txt +29 -0
  556. package/config/hard/Rummikub2/output/18 - A bit of everything.txt +17 -0
  557. package/config/hard/Rummikub2/output/19 - Many paths to explore.txt +29 -0
  558. package/config/hard/SimplePascalPL0Compiler/code/CGCode.js +9 -0
  559. package/config/hard/SimplePascalPL0Compiler/code/CGCode.php +11 -0
  560. package/config/hard/SimplePascalPL0Compiler/config.json +88 -0
  561. package/config/hard/SimplePascalPL0Compiler/input/01 - Simple example.txt +4 -0
  562. package/config/hard/SimplePascalPL0Compiler/input/02 - While and If.txt +16 -0
  563. package/config/hard/SimplePascalPL0Compiler/input/03 - Procedure.txt +34 -0
  564. package/config/hard/SimplePascalPL0Compiler/input/04 - Unknown variable.txt +4 -0
  565. package/config/hard/SimplePascalPL0Compiler/input/05 - ; missing.txt +11 -0
  566. package/config/hard/SimplePascalPL0Compiler/input/06 - Invalid expression.txt +6 -0
  567. package/config/hard/SimplePascalPL0Compiler/input/07 - Missing symbol.txt +6 -0
  568. package/config/hard/SimplePascalPL0Compiler/input/08 - Already exist.txt +18 -0
  569. package/config/hard/SimplePascalPL0Compiler/input/09 - Constant already exist.txt +11 -0
  570. package/config/hard/SimplePascalPL0Compiler/input/10 - Variable already exist.txt +12 -0
  571. package/config/hard/SimplePascalPL0Compiler/input/11 - Invalid statement.txt +14 -0
  572. package/config/hard/SimplePascalPL0Compiler/input/12 - Odd or Neg.txt +10 -0
  573. package/config/hard/SimplePascalPL0Compiler/input/13 - Scope.txt +29 -0
  574. package/config/hard/SimplePascalPL0Compiler/input/14 - No BEGIN.txt +11 -0
  575. package/config/hard/SimplePascalPL0Compiler/input/15 - Crazy format.txt +32 -0
  576. package/config/hard/SimplePascalPL0Compiler/input/16 - Nested procedures.txt +42 -0
  577. package/config/hard/SimplePascalPL0Compiler/output/01 - Simple example.txt +7 -0
  578. package/config/hard/SimplePascalPL0Compiler/output/02 - While and If.txt +34 -0
  579. package/config/hard/SimplePascalPL0Compiler/output/03 - Procedure.txt +53 -0
  580. package/config/hard/SimplePascalPL0Compiler/output/04 - Unknown variable.txt +1 -0
  581. package/config/hard/SimplePascalPL0Compiler/output/05 - ; missing.txt +1 -0
  582. package/config/hard/SimplePascalPL0Compiler/output/06 - Invalid expression.txt +1 -0
  583. package/config/hard/SimplePascalPL0Compiler/output/07 - Missing symbol.txt +1 -0
  584. package/config/hard/SimplePascalPL0Compiler/output/08 - Already exist.txt +1 -0
  585. package/config/hard/SimplePascalPL0Compiler/output/09 - Constant already exist.txt +1 -0
  586. package/config/hard/SimplePascalPL0Compiler/output/10 - Variable already exist.txt +1 -0
  587. package/config/hard/SimplePascalPL0Compiler/output/11 - Invalid statement.txt +1 -0
  588. package/config/hard/SimplePascalPL0Compiler/output/12 - Odd or Neg.txt +15 -0
  589. package/config/hard/SimplePascalPL0Compiler/output/13 - Scope.txt +23 -0
  590. package/config/hard/SimplePascalPL0Compiler/output/14 - No BEGIN.txt +23 -0
  591. package/config/hard/SimplePascalPL0Compiler/output/15 - Crazy format.txt +56 -0
  592. package/config/hard/SimplePascalPL0Compiler/output/16 - Nested procedures.txt +54 -0
  593. package/config/hard/SolveForX/code/CGCode.js +11 -0
  594. package/config/hard/SolveForX/code/CGCode.php +14 -0
  595. package/config/hard/SolveForX/config.json +68 -0
  596. package/config/hard/SolveForX/input/01 - Addition.txt +7 -0
  597. package/config/hard/SolveForX/input/02 - Subtraction.txt +7 -0
  598. package/config/hard/SolveForX/input/03 - Multiplication.txt +7 -0
  599. package/config/hard/SolveForX/input/04 - Division I.txt +5 -0
  600. package/config/hard/SolveForX/input/05 - Division II.txt +5 -0
  601. package/config/hard/SolveForX/input/06 - Sorting Subexpressions.txt +9 -0
  602. package/config/hard/SolveForX/input/07 - Easy.txt +41 -0
  603. package/config/hard/SolveForX/input/08 - Medium.txt +31 -0
  604. package/config/hard/SolveForX/input/09 - Hard I.txt +23 -0
  605. package/config/hard/SolveForX/input/10 - Hard II.txt +21 -0
  606. package/config/hard/SolveForX/input/11 - Hard III.txt +21 -0
  607. package/config/hard/SolveForX/input/12 - 24 The Long Game - A Tribute.txt +5 -0
  608. package/config/hard/SolveForX/output/01 - Addition.txt +6 -0
  609. package/config/hard/SolveForX/output/02 - Subtraction.txt +6 -0
  610. package/config/hard/SolveForX/output/03 - Multiplication.txt +6 -0
  611. package/config/hard/SolveForX/output/04 - Division I.txt +4 -0
  612. package/config/hard/SolveForX/output/05 - Division II.txt +4 -0
  613. package/config/hard/SolveForX/output/06 - Sorting Subexpressions.txt +8 -0
  614. package/config/hard/SolveForX/output/07 - Easy.txt +40 -0
  615. package/config/hard/SolveForX/output/08 - Medium.txt +30 -0
  616. package/config/hard/SolveForX/output/09 - Hard I.txt +22 -0
  617. package/config/hard/SolveForX/output/10 - Hard II.txt +20 -0
  618. package/config/hard/SolveForX/output/11 - Hard III.txt +20 -0
  619. package/config/hard/SolveForX/output/12 - 24 The Long Game - A Tribute.txt +4 -0
  620. package/config/hard/StringBallsII/code/CGCode.js +7 -0
  621. package/config/hard/StringBallsII/code/CGCode.php +8 -0
  622. package/config/hard/StringBallsII/config.json +103 -0
  623. package/config/hard/StringBallsII/input/01 - Easy Test.txt +2 -0
  624. package/config/hard/StringBallsII/input/02 - 10 Char Center, Short Radius.txt +2 -0
  625. package/config/hard/StringBallsII/input/03 - 10 Char Center, Medium Radius.txt +2 -0
  626. package/config/hard/StringBallsII/input/04 - 10 Char Center, Long Radius.txt +2 -0
  627. package/config/hard/StringBallsII/input/05 - 20 Char Center, Short Radius.txt +2 -0
  628. package/config/hard/StringBallsII/input/06 - 20 Char Center, Medium Radius.txt +2 -0
  629. package/config/hard/StringBallsII/input/07 - 20 Char Center, Long Radius.txt +2 -0
  630. package/config/hard/StringBallsII/input/08 - Turn Up The Heat I.txt +2 -0
  631. package/config/hard/StringBallsII/input/09 - Turn Up The Heat II.txt +2 -0
  632. package/config/hard/StringBallsII/input/10 - Medium Stress I.txt +2 -0
  633. package/config/hard/StringBallsII/input/11 - Medium Stress II.txt +2 -0
  634. package/config/hard/StringBallsII/input/12 - Medium Stress III.txt +2 -0
  635. package/config/hard/StringBallsII/input/13 - Extreme Stress I.txt +2 -0
  636. package/config/hard/StringBallsII/input/14 - Extreme Stress II.txt +2 -0
  637. package/config/hard/StringBallsII/input/15 - Extreme Stress III.txt +2 -0
  638. package/config/hard/StringBallsII/input/16 - Ultimate Stress I.txt +2 -0
  639. package/config/hard/StringBallsII/input/17 - Ultimate Stress II.txt +2 -0
  640. package/config/hard/StringBallsII/input/18 - Ultimate Stress III.txt +2 -0
  641. package/config/hard/StringBallsII/input/19 - Please Stop!.txt +2 -0
  642. package/config/hard/StringBallsII/output/01 - Easy Test.txt +1 -0
  643. package/config/hard/StringBallsII/output/02 - 10 Char Center, Short Radius.txt +1 -0
  644. package/config/hard/StringBallsII/output/03 - 10 Char Center, Medium Radius.txt +1 -0
  645. package/config/hard/StringBallsII/output/04 - 10 Char Center, Long Radius.txt +1 -0
  646. package/config/hard/StringBallsII/output/05 - 20 Char Center, Short Radius.txt +1 -0
  647. package/config/hard/StringBallsII/output/06 - 20 Char Center, Medium Radius.txt +1 -0
  648. package/config/hard/StringBallsII/output/07 - 20 Char Center, Long Radius.txt +1 -0
  649. package/config/hard/StringBallsII/output/08 - Turn Up The Heat I.txt +1 -0
  650. package/config/hard/StringBallsII/output/09 - Turn Up The Heat II.txt +1 -0
  651. package/config/hard/StringBallsII/output/10 - Medium Stress I.txt +1 -0
  652. package/config/hard/StringBallsII/output/11 - Medium Stress II.txt +1 -0
  653. package/config/hard/StringBallsII/output/12 - Medium Stress III.txt +1 -0
  654. package/config/hard/StringBallsII/output/13 - Extreme Stress I.txt +1 -0
  655. package/config/hard/StringBallsII/output/14 - Extreme Stress II.txt +1 -0
  656. package/config/hard/StringBallsII/output/15 - Extreme Stress III.txt +1 -0
  657. package/config/hard/StringBallsII/output/16 - Ultimate Stress I.txt +1 -0
  658. package/config/hard/StringBallsII/output/17 - Ultimate Stress II.txt +1 -0
  659. package/config/hard/StringBallsII/output/18 - Ultimate Stress III.txt +1 -0
  660. package/config/hard/StringBallsII/output/19 - Please Stop!.txt +1 -0
  661. package/config/hard/TetrisFloor/code/CGCode.js +21 -0
  662. package/config/hard/TetrisFloor/code/CGCode.php +14 -0
  663. package/config/hard/TetrisFloor/config.json +83 -0
  664. package/config/hard/TetrisFloor/input/01 - Studio.txt +9 -0
  665. package/config/hard/TetrisFloor/input/02 - Studio #2.txt +10 -0
  666. package/config/hard/TetrisFloor/input/03 - One Bedroom.txt +12 -0
  667. package/config/hard/TetrisFloor/input/04 - One Bedroom #2.txt +12 -0
  668. package/config/hard/TetrisFloor/input/05 - Two Bedrooms.txt +11 -0
  669. package/config/hard/TetrisFloor/input/06 - Two Bedrooms #2.txt +20 -0
  670. package/config/hard/TetrisFloor/input/07 - Conformity.txt +19 -0
  671. package/config/hard/TetrisFloor/input/08 - Conformity #2.txt +23 -0
  672. package/config/hard/TetrisFloor/input/09 - Many Possibilities.txt +14 -0
  673. package/config/hard/TetrisFloor/input/10 - Similar Prices.txt +16 -0
  674. package/config/hard/TetrisFloor/input/11 - Tetris.txt +14 -0
  675. package/config/hard/TetrisFloor/input/12 - Orientation N-S.txt +25 -0
  676. package/config/hard/TetrisFloor/input/13 - Orientation E-W.txt +86 -0
  677. package/config/hard/TetrisFloor/input/14 - Random.txt +52 -0
  678. package/config/hard/TetrisFloor/input/15 - Random #2.txt +44 -0
  679. package/config/hard/TetrisFloor/output/01 - Studio.txt +3 -0
  680. package/config/hard/TetrisFloor/output/02 - Studio #2.txt +3 -0
  681. package/config/hard/TetrisFloor/output/03 - One Bedroom.txt +3 -0
  682. package/config/hard/TetrisFloor/output/04 - One Bedroom #2.txt +3 -0
  683. package/config/hard/TetrisFloor/output/05 - Two Bedrooms.txt +3 -0
  684. package/config/hard/TetrisFloor/output/06 - Two Bedrooms #2.txt +3 -0
  685. package/config/hard/TetrisFloor/output/07 - Conformity.txt +3 -0
  686. package/config/hard/TetrisFloor/output/08 - Conformity #2.txt +3 -0
  687. package/config/hard/TetrisFloor/output/09 - Many Possibilities.txt +3 -0
  688. package/config/hard/TetrisFloor/output/10 - Similar Prices.txt +3 -0
  689. package/config/hard/TetrisFloor/output/11 - Tetris.txt +3 -0
  690. package/config/hard/TetrisFloor/output/12 - Orientation N-S.txt +3 -0
  691. package/config/hard/TetrisFloor/output/13 - Orientation E-W.txt +3 -0
  692. package/config/hard/TetrisFloor/output/14 - Random.txt +3 -0
  693. package/config/hard/TetrisFloor/output/15 - Random #2.txt +3 -0
  694. package/config/hard/TheBurglarsDilemna/code/CGCode.js +13 -0
  695. package/config/hard/TheBurglarsDilemna/code/CGCode.php +16 -0
  696. package/config/hard/TheBurglarsDilemna/config.json +43 -0
  697. package/config/hard/TheBurglarsDilemna/input/01 - Simple solution.txt +8 -0
  698. package/config/hard/TheBurglarsDilemna/input/02 - Obvious fleeing.txt +4 -0
  699. package/config/hard/TheBurglarsDilemna/input/03 - More attempts with 0 & 9.txt +22 -0
  700. package/config/hard/TheBurglarsDilemna/input/04 - Two possibilities.txt +12 -0
  701. package/config/hard/TheBurglarsDilemna/input/05 - Long Code.txt +14 -0
  702. package/config/hard/TheBurglarsDilemna/input/06 - Short code.txt +8 -0
  703. package/config/hard/TheBurglarsDilemna/input/07 - Short code redux.txt +10 -0
  704. package/config/hard/TheBurglarsDilemna/output/01 - Simple solution.txt +1 -0
  705. package/config/hard/TheBurglarsDilemna/output/02 - Obvious fleeing.txt +1 -0
  706. package/config/hard/TheBurglarsDilemna/output/03 - More attempts with 0 & 9.txt +1 -0
  707. package/config/hard/TheBurglarsDilemna/output/04 - Two possibilities.txt +1 -0
  708. package/config/hard/TheBurglarsDilemna/output/05 - Long Code.txt +1 -0
  709. package/config/hard/TheBurglarsDilemna/output/06 - Short code.txt +1 -0
  710. package/config/hard/TheBurglarsDilemna/output/07 - Short code redux.txt +1 -0
  711. package/config/hard/TheFlightOfBirds/code/CGCode.js +19 -0
  712. package/config/hard/TheFlightOfBirds/code/CGCode.php +14 -0
  713. package/config/hard/TheFlightOfBirds/config.json +53 -0
  714. package/config/hard/TheFlightOfBirds/input/01 - test 1 2 birds, 0 wall collision, 0 bird collision.txt +6 -0
  715. package/config/hard/TheFlightOfBirds/input/02 - test 2 2 birds, 5 wall collisions, 0 bird collision.txt +6 -0
  716. package/config/hard/TheFlightOfBirds/input/03 - test 3 2 birds, 0 wall collisions, 1 bird collision.txt +6 -0
  717. package/config/hard/TheFlightOfBirds/input/04 - test 4 4 birds, 4 wall collisions, 3 bird collisions.txt +8 -0
  718. package/config/hard/TheFlightOfBirds/input/05 - test 5 4 birds, 9 wall collisions, 5 bird collisions.txt +8 -0
  719. package/config/hard/TheFlightOfBirds/input/06 - test 6 10 birds, 20 wall collisions, 12 bird collisions.txt +14 -0
  720. package/config/hard/TheFlightOfBirds/input/07 - test 7 80 birds, 89 wall collisions, 203 bird collisions.txt +84 -0
  721. package/config/hard/TheFlightOfBirds/input/08 - test 8 No movement.txt +8 -0
  722. package/config/hard/TheFlightOfBirds/input/09 - test 9 Return to initial position.txt +13 -0
  723. package/config/hard/TheFlightOfBirds/output/01 - test 1 2 birds, 0 wall collision, 0 bird collision.txt +2 -0
  724. package/config/hard/TheFlightOfBirds/output/02 - test 2 2 birds, 5 wall collisions, 0 bird collision.txt +2 -0
  725. package/config/hard/TheFlightOfBirds/output/03 - test 3 2 birds, 0 wall collisions, 1 bird collision.txt +2 -0
  726. package/config/hard/TheFlightOfBirds/output/04 - test 4 4 birds, 4 wall collisions, 3 bird collisions.txt +4 -0
  727. package/config/hard/TheFlightOfBirds/output/05 - test 5 4 birds, 9 wall collisions, 5 bird collisions.txt +4 -0
  728. package/config/hard/TheFlightOfBirds/output/06 - test 6 10 birds, 20 wall collisions, 12 bird collisions.txt +10 -0
  729. package/config/hard/TheFlightOfBirds/output/07 - test 7 80 birds, 89 wall collisions, 203 bird collisions.txt +80 -0
  730. package/config/hard/TheFlightOfBirds/output/08 - test 8 No movement.txt +1 -0
  731. package/config/hard/TheFlightOfBirds/output/09 - test 9 Return to initial position.txt +9 -0
  732. package/config/hard/TheHiddenFortress/code/CGCode.js +11 -0
  733. package/config/hard/TheHiddenFortress/code/CGCode.php +14 -0
  734. package/config/hard/TheHiddenFortress/config.json +48 -0
  735. package/config/hard/TheHiddenFortress/input/01 - 3 x 3.txt +4 -0
  736. package/config/hard/TheHiddenFortress/input/02 - Another 3 x 3.txt +4 -0
  737. package/config/hard/TheHiddenFortress/input/03 - 5 x 5.txt +6 -0
  738. package/config/hard/TheHiddenFortress/input/04 - 11 x 11.txt +12 -0
  739. package/config/hard/TheHiddenFortress/input/05 - 16 x 16.txt +17 -0
  740. package/config/hard/TheHiddenFortress/input/06 - 21 x 21.txt +22 -0
  741. package/config/hard/TheHiddenFortress/input/07 - 31 x 31, airy.txt +32 -0
  742. package/config/hard/TheHiddenFortress/input/08 - 31 x 31, dense.txt +32 -0
  743. package/config/hard/TheHiddenFortress/output/01 - 3 x 3.txt +3 -0
  744. package/config/hard/TheHiddenFortress/output/02 - Another 3 x 3.txt +3 -0
  745. package/config/hard/TheHiddenFortress/output/03 - 5 x 5.txt +5 -0
  746. package/config/hard/TheHiddenFortress/output/04 - 11 x 11.txt +11 -0
  747. package/config/hard/TheHiddenFortress/output/05 - 16 x 16.txt +16 -0
  748. package/config/hard/TheHiddenFortress/output/06 - 21 x 21.txt +21 -0
  749. package/config/hard/TheHiddenFortress/output/07 - 31 x 31, airy.txt +31 -0
  750. package/config/hard/TheHiddenFortress/output/08 - 31 x 31, dense.txt +31 -0
  751. package/config/hard/WhoDunnit/code/CGCode.js +11 -0
  752. package/config/hard/WhoDunnit/code/CGCode.php +11 -0
  753. package/config/hard/WhoDunnit/config.json +108 -0
  754. package/config/hard/WhoDunnit/input/01 - Example.txt +7 -0
  755. package/config/hard/WhoDunnit/input/02 - Example shuffled.txt +7 -0
  756. package/config/hard/WhoDunnit/input/03 - Direct implication.txt +5 -0
  757. package/config/hard/WhoDunnit/input/04 - Three suspects.txt +7 -0
  758. package/config/hard/WhoDunnit/input/05 - Unidentified weapon.txt +8 -0
  759. package/config/hard/WhoDunnit/input/06 - Confession.txt +2 -0
  760. package/config/hard/WhoDunnit/input/07 - Accomplice.txt +10 -0
  761. package/config/hard/WhoDunnit/input/08 - Double homicide.txt +16 -0
  762. package/config/hard/WhoDunnit/input/09 - Triple homicide.txt +24 -0
  763. package/config/hard/WhoDunnit/input/10 - Airtight alibi.txt +25 -0
  764. package/config/hard/WhoDunnit/input/11 - Murder! by Anthony and Elva Pratt.txt +14 -0
  765. package/config/hard/WhoDunnit/input/12 - (Spoiler) Plot device by Rian Johnson.txt +31 -0
  766. package/config/hard/WhoDunnit/input/13 - Accessory after the fact.txt +24 -0
  767. package/config/hard/WhoDunnit/input/14 - Silent co-conspirators.txt +49 -0
  768. package/config/hard/WhoDunnit/input/15 - Motive.txt +61 -0
  769. package/config/hard/WhoDunnit/input/16 - Chain of reasoning.txt +101 -0
  770. package/config/hard/WhoDunnit/input/17 - Kitchen Sink.txt +102 -0
  771. package/config/hard/WhoDunnit/input/18 - Jaw dropper.txt +251 -0
  772. package/config/hard/WhoDunnit/input/19 - Unexpected twist.txt +251 -0
  773. package/config/hard/WhoDunnit/input/20 - Alternative ending.txt +251 -0
  774. package/config/hard/WhoDunnit/output/01 - Example.txt +1 -0
  775. package/config/hard/WhoDunnit/output/02 - Example shuffled.txt +1 -0
  776. package/config/hard/WhoDunnit/output/03 - Direct implication.txt +1 -0
  777. package/config/hard/WhoDunnit/output/04 - Three suspects.txt +1 -0
  778. package/config/hard/WhoDunnit/output/05 - Unidentified weapon.txt +1 -0
  779. package/config/hard/WhoDunnit/output/06 - Confession.txt +1 -0
  780. package/config/hard/WhoDunnit/output/07 - Accomplice.txt +1 -0
  781. package/config/hard/WhoDunnit/output/08 - Double homicide.txt +1 -0
  782. package/config/hard/WhoDunnit/output/09 - Triple homicide.txt +1 -0
  783. package/config/hard/WhoDunnit/output/10 - Airtight alibi.txt +1 -0
  784. package/config/hard/WhoDunnit/output/11 - Murder! by Anthony and Elva Pratt.txt +1 -0
  785. package/config/hard/WhoDunnit/output/12 - (Spoiler) Plot device by Rian Johnson.txt +1 -0
  786. package/config/hard/WhoDunnit/output/13 - Accessory after the fact.txt +1 -0
  787. package/config/hard/WhoDunnit/output/14 - Silent co-conspirators.txt +1 -0
  788. package/config/hard/WhoDunnit/output/15 - Motive.txt +1 -0
  789. package/config/hard/WhoDunnit/output/16 - Chain of reasoning.txt +1 -0
  790. package/config/hard/WhoDunnit/output/17 - Kitchen Sink.txt +1 -0
  791. package/config/hard/WhoDunnit/output/18 - Jaw dropper.txt +1 -0
  792. package/config/hard/WhoDunnit/output/19 - Unexpected twist.txt +1 -0
  793. package/config/hard/WhoDunnit/output/20 - Alternative ending.txt +1 -0
  794. package/config/medium/ASCIICube/code/CGCode.js +8 -0
  795. package/config/medium/ASCIICube/code/CGCode.php +9 -0
  796. package/config/medium/ASCIICube/config.json +93 -0
  797. package/config/medium/ASCIICube/input/01 - w gt h gt d.txt +3 -0
  798. package/config/medium/ASCIICube/input/02 - d gt h gt w.txt +3 -0
  799. package/config/medium/ASCIICube/input/03 - w gt d gt h.txt +3 -0
  800. package/config/medium/ASCIICube/input/04 - h gt d gt w.txt +3 -0
  801. package/config/medium/ASCIICube/input/05 - d gt w gt h.txt +3 -0
  802. package/config/medium/ASCIICube/input/06 - h gt w gt d.txt +3 -0
  803. package/config/medium/ASCIICube/input/07 - w = 1.txt +3 -0
  804. package/config/medium/ASCIICube/input/08 - h = 1.txt +3 -0
  805. package/config/medium/ASCIICube/input/09 - d = 1.txt +3 -0
  806. package/config/medium/ASCIICube/input/10 - w = 1 h = 1.txt +3 -0
  807. package/config/medium/ASCIICube/input/11 - w = 1 d = 1.txt +3 -0
  808. package/config/medium/ASCIICube/input/12 - h = 1 d = 1.txt +3 -0
  809. package/config/medium/ASCIICube/input/13 - w = 1 h = 1 d = 1.txt +3 -0
  810. package/config/medium/ASCIICube/input/14 - w = d.txt +3 -0
  811. package/config/medium/ASCIICube/input/15 - w = h.txt +3 -0
  812. package/config/medium/ASCIICube/input/16 - h = d.txt +3 -0
  813. package/config/medium/ASCIICube/input/17 - w = h = d.txt +3 -0
  814. package/config/medium/ASCIICube/output/01 - w gt h gt d.txt +6 -0
  815. package/config/medium/ASCIICube/output/02 - d gt h gt w.txt +13 -0
  816. package/config/medium/ASCIICube/output/03 - w gt d gt h.txt +12 -0
  817. package/config/medium/ASCIICube/output/04 - h gt d gt w.txt +23 -0
  818. package/config/medium/ASCIICube/output/05 - d gt w gt h.txt +19 -0
  819. package/config/medium/ASCIICube/output/06 - h gt w gt d.txt +7 -0
  820. package/config/medium/ASCIICube/output/07 - w = 1.txt +12 -0
  821. package/config/medium/ASCIICube/output/08 - h = 1.txt +10 -0
  822. package/config/medium/ASCIICube/output/09 - d = 1.txt +9 -0
  823. package/config/medium/ASCIICube/output/10 - w = 1 h = 1.txt +8 -0
  824. package/config/medium/ASCIICube/output/11 - w = 1 d = 1.txt +7 -0
  825. package/config/medium/ASCIICube/output/12 - h = 1 d = 1.txt +3 -0
  826. package/config/medium/ASCIICube/output/13 - w = 1 h = 1 d = 1.txt +3 -0
  827. package/config/medium/ASCIICube/output/14 - w = d.txt +12 -0
  828. package/config/medium/ASCIICube/output/15 - w = h.txt +14 -0
  829. package/config/medium/ASCIICube/output/16 - h = d.txt +11 -0
  830. package/config/medium/ASCIICube/output/17 - w = h = d.txt +15 -0
  831. package/config/medium/ASCIISnakes/code/CGCode.js +6 -0
  832. package/config/medium/ASCIISnakes/code/CGCode.php +7 -0
  833. package/config/medium/ASCIISnakes/config.json +28 -0
  834. package/config/medium/ASCIISnakes/input/01 - Example case.txt +1 -0
  835. package/config/medium/ASCIISnakes/input/02 - Back to the basics.txt +1 -0
  836. package/config/medium/ASCIISnakes/input/03 - Weird snake.txt +1 -0
  837. package/config/medium/ASCIISnakes/input/04 - Boss snake.txt +1 -0
  838. package/config/medium/ASCIISnakes/output/01 - Example case.txt +8 -0
  839. package/config/medium/ASCIISnakes/output/02 - Back to the basics.txt +8 -0
  840. package/config/medium/ASCIISnakes/output/03 - Weird snake.txt +8 -0
  841. package/config/medium/ASCIISnakes/output/04 - Boss snake.txt +10 -0
  842. package/config/medium/AStoryToGoInCircles/code/CGCode.js +10 -0
  843. package/config/medium/AStoryToGoInCircles/code/CGCode.php +12 -0
  844. package/config/medium/AStoryToGoInCircles/config.json +28 -0
  845. package/config/medium/AStoryToGoInCircles/input/01 - test 1.txt +6 -0
  846. package/config/medium/AStoryToGoInCircles/input/02 - test 2.txt +8 -0
  847. package/config/medium/AStoryToGoInCircles/input/03 - test 3.txt +9 -0
  848. package/config/medium/AStoryToGoInCircles/input/04 - test 4.txt +11 -0
  849. package/config/medium/AStoryToGoInCircles/output/01 - test 1.txt +1 -0
  850. package/config/medium/AStoryToGoInCircles/output/02 - test 2.txt +1 -0
  851. package/config/medium/AStoryToGoInCircles/output/03 - test 3.txt +1 -0
  852. package/config/medium/AStoryToGoInCircles/output/04 - test 4.txt +1 -0
  853. package/config/medium/BeachVolleyball/code/CGCode.js +14 -0
  854. package/config/medium/BeachVolleyball/code/CGCode.php +11 -0
  855. package/config/medium/BeachVolleyball/config.json +33 -0
  856. package/config/medium/BeachVolleyball/input/01 - Straight Down.txt +5 -0
  857. package/config/medium/BeachVolleyball/input/02 - Frictionless Water.txt +5 -0
  858. package/config/medium/BeachVolleyball/input/03 - Different speeds.txt +5 -0
  859. package/config/medium/BeachVolleyball/input/04 - Big Kick.txt +5 -0
  860. package/config/medium/BeachVolleyball/input/05 - Really Big Kick.txt +5 -0
  861. package/config/medium/BeachVolleyball/output/01 - Straight Down.txt +1 -0
  862. package/config/medium/BeachVolleyball/output/02 - Frictionless Water.txt +1 -0
  863. package/config/medium/BeachVolleyball/output/03 - Different speeds.txt +1 -0
  864. package/config/medium/BeachVolleyball/output/04 - Big Kick.txt +1 -0
  865. package/config/medium/BeachVolleyball/output/05 - Really Big Kick.txt +1 -0
  866. package/config/medium/CookingPassion/code/CGCode.js +16 -0
  867. package/config/medium/CookingPassion/code/CGCode.php +17 -0
  868. package/config/medium/CookingPassion/config.json +38 -0
  869. package/config/medium/CookingPassion/input/01 - Simple Recipe.txt +9 -0
  870. package/config/medium/CookingPassion/input/02 - kilograms.txt +9 -0
  871. package/config/medium/CookingPassion/input/03 - Order + liquid.txt +15 -0
  872. package/config/medium/CookingPassion/input/04 - Your dog is rich.txt +17 -0
  873. package/config/medium/CookingPassion/input/05 - J/342/200/231aime la ratatouille.txt" +33 -0
  874. package/config/medium/CookingPassion/input/06 - Mix and twist.txt +7 -0
  875. package/config/medium/CookingPassion/output/01 - Simple Recipe.txt +4 -0
  876. package/config/medium/CookingPassion/output/02 - kilograms.txt +4 -0
  877. package/config/medium/CookingPassion/output/03 - Order + liquid.txt +6 -0
  878. package/config/medium/CookingPassion/output/04 - Your dog is rich.txt +7 -0
  879. package/config/medium/CookingPassion/output/05 - J/342/200/231aime la ratatouille.txt" +12 -0
  880. package/config/medium/CookingPassion/output/06 - Mix and twist.txt +3 -0
  881. package/config/medium/Criminal/code/CGCode.js +10 -0
  882. package/config/medium/Criminal/code/CGCode.php +12 -0
  883. package/config/medium/Criminal/config.json +53 -0
  884. package/config/medium/Criminal/input/01 - Example.txt +6 -0
  885. package/config/medium/Criminal/input/02 - Example 2.txt +12 -0
  886. package/config/medium/Criminal/input/03 - Ninja.txt +7 -0
  887. package/config/medium/Criminal/input/04 - Small Hole.txt +7 -0
  888. package/config/medium/Criminal/input/05 - Infiltrate.txt +9 -0
  889. package/config/medium/Criminal/input/06 - Behind A Stick.txt +7 -0
  890. package/config/medium/Criminal/input/07 - In A House.txt07 - In A House.txt +34 -0
  891. package/config/medium/Criminal/input/08 - In A House 2.txt +34 -0
  892. package/config/medium/Criminal/input/09 - Nobody Will Catch You! ... if you/342/200/231re already caught.txt" +11 -0
  893. package/config/medium/Criminal/output/01 - Example.txt +1 -0
  894. package/config/medium/Criminal/output/02 - Example 2.txt +1 -0
  895. package/config/medium/Criminal/output/03 - Ninja.txt +1 -0
  896. package/config/medium/Criminal/output/04 - Small Hole.txt +1 -0
  897. package/config/medium/Criminal/output/05 - Infiltrate.txt +1 -0
  898. package/config/medium/Criminal/output/06 - Behind A Stick.txt +1 -0
  899. package/config/medium/Criminal/output/08 - In A House 2.txt +1 -0
  900. package/config/medium/Criminal/output/09 - Nobody Will Catch You! ... if you/342/200/231re already caught.txt" +1 -0
  901. package/config/medium/CustomGameOfLife/code/CGCode.js +14 -0
  902. package/config/medium/CustomGameOfLife/code/CGCode.php +13 -0
  903. package/config/medium/CustomGameOfLife/config.json +53 -0
  904. package/config/medium/CustomGameOfLife/input/01 - Stable.txt +6 -0
  905. package/config/medium/CustomGameOfLife/input/02 - 1 turn.txt +8 -0
  906. package/config/medium/CustomGameOfLife/input/03 - Oscillator.txt +6 -0
  907. package/config/medium/CustomGameOfLife/input/04 - Spaceship 4 turns.txt +7 -0
  908. package/config/medium/CustomGameOfLife/input/05 - New rules, simple.txt +7 -0
  909. package/config/medium/CustomGameOfLife/input/06 - A bit more complex.txt +8 -0
  910. package/config/medium/CustomGameOfLife/input/07 - Weird rules.txt +9 -0
  911. package/config/medium/CustomGameOfLife/input/08 - Complex rules, more turns.txt +13 -0
  912. package/config/medium/CustomGameOfLife/input/09 - Insane (20x20, random rules and grid).txt +23 -0
  913. package/config/medium/CustomGameOfLife/output/01 - Stable.txt +3 -0
  914. package/config/medium/CustomGameOfLife/output/02 - 1 turn.txt +5 -0
  915. package/config/medium/CustomGameOfLife/output/03 - Oscillator.txt +3 -0
  916. package/config/medium/CustomGameOfLife/output/04 - Spaceship 4 turns.txt +4 -0
  917. package/config/medium/CustomGameOfLife/output/05 - New rules, simple.txt +4 -0
  918. package/config/medium/CustomGameOfLife/output/06 - A bit more complex.txt +5 -0
  919. package/config/medium/CustomGameOfLife/output/07 - Weird rules.txt +6 -0
  920. package/config/medium/CustomGameOfLife/output/08 - Complex rules, more turns.txt +10 -0
  921. package/config/medium/CustomGameOfLife/output/09 - Insane (20x20, random rules and grid).txt +20 -0
  922. package/config/medium/DiceGalaxy/code/CGCode.js +12 -0
  923. package/config/medium/DiceGalaxy/code/CGCode.php +15 -0
  924. package/config/medium/DiceGalaxy/config.json +53 -0
  925. package/config/medium/DiceGalaxy/input/01 - Vertical position.txt +5 -0
  926. package/config/medium/DiceGalaxy/input/02 - Horizontal position.txt +5 -0
  927. package/config/medium/DiceGalaxy/input/03 - Diagonal position.txt +5 -0
  928. package/config/medium/DiceGalaxy/input/04 - Knight move.txt +5 -0
  929. package/config/medium/DiceGalaxy/input/05 - A little flat universe.txt +4 -0
  930. package/config/medium/DiceGalaxy/input/06 - Balanced.txt +5 -0
  931. package/config/medium/DiceGalaxy/input/07 - Mistakes of predecessors.txt +5 -0
  932. package/config/medium/DiceGalaxy/input/08 - Double galaxy.txt +7 -0
  933. package/config/medium/DiceGalaxy/input/09 - Seven galaxy.txt +12 -0
  934. package/config/medium/DiceGalaxy/output/01 - Vertical position.txt +3 -0
  935. package/config/medium/DiceGalaxy/output/02 - Horizontal position.txt +3 -0
  936. package/config/medium/DiceGalaxy/output/03 - Diagonal position.txt +3 -0
  937. package/config/medium/DiceGalaxy/output/04 - Knight move.txt +3 -0
  938. package/config/medium/DiceGalaxy/output/05 - A little flat universe.txt +2 -0
  939. package/config/medium/DiceGalaxy/output/06 - Balanced.txt +3 -0
  940. package/config/medium/DiceGalaxy/output/07 - Mistakes of predecessors.txt +3 -0
  941. package/config/medium/DiceGalaxy/output/08 - Double galaxy.txt +5 -0
  942. package/config/medium/DiceGalaxy/output/09 - Seven galaxy.txt +10 -0
  943. package/config/medium/DisksIntersection/code/CGCode.js +13 -0
  944. package/config/medium/DisksIntersection/code/CGCode.php +8 -0
  945. package/config/medium/DisksIntersection/config.json +33 -0
  946. package/config/medium/DisksIntersection/input/01 - No intersection.txt +2 -0
  947. package/config/medium/DisksIntersection/input/02 - Intersection in one point.txt +2 -0
  948. package/config/medium/DisksIntersection/input/03 - Same radius.txt +2 -0
  949. package/config/medium/DisksIntersection/input/04 - Different radius.txt +2 -0
  950. package/config/medium/DisksIntersection/input/05 - One in another.txt +2 -0
  951. package/config/medium/DisksIntersection/output/01 - No intersection.txt +1 -0
  952. package/config/medium/DisksIntersection/output/02 - Intersection in one point.txt +1 -0
  953. package/config/medium/DisksIntersection/output/03 - Same radius.txt +1 -0
  954. package/config/medium/DisksIntersection/output/04 - Different radius.txt +1 -0
  955. package/config/medium/DisksIntersection/output/05 - One in another.txt +1 -0
  956. package/config/medium/Enigma3RotorsWithoutPlugboard/code/CGCode.js +29 -0
  957. package/config/medium/Enigma3RotorsWithoutPlugboard/code/CGCode.php +31 -0
  958. package/config/medium/Enigma3RotorsWithoutPlugboard/config.json +28 -0
  959. package/config/medium/Enigma3RotorsWithoutPlugboard/input/01 - Short Message.txt +9 -0
  960. package/config/medium/Enigma3RotorsWithoutPlugboard/input/02 - Triggered Rotation.txt +9 -0
  961. package/config/medium/Enigma3RotorsWithoutPlugboard/input/03 - Longer Message.txt +9 -0
  962. package/config/medium/Enigma3RotorsWithoutPlugboard/input/04 - Longest Message.txt +9 -0
  963. package/config/medium/Enigma3RotorsWithoutPlugboard/output/01 - Short Message.txt +1 -0
  964. package/config/medium/Enigma3RotorsWithoutPlugboard/output/02 - Triggered Rotation.txt +1 -0
  965. package/config/medium/Enigma3RotorsWithoutPlugboard/output/03 - Longer Message.txt +1 -0
  966. package/config/medium/Enigma3RotorsWithoutPlugboard/output/04 - Longest Message.txt +1 -0
  967. package/config/medium/EuropeanRugbyChampionsCupRanking/code/CGCode.js +13 -0
  968. package/config/medium/EuropeanRugbyChampionsCupRanking/code/CGCode.php +17 -0
  969. package/config/medium/EuropeanRugbyChampionsCupRanking/config.json +33 -0
  970. package/config/medium/EuropeanRugbyChampionsCupRanking/input/01 - CHALLENGE CUP 2014-2015.txt +65 -0
  971. package/config/medium/EuropeanRugbyChampionsCupRanking/input/02 - ERCC 2015-2016.txt +65 -0
  972. package/config/medium/EuropeanRugbyChampionsCupRanking/input/03 - ERCC 2016-2017.txt +65 -0
  973. package/config/medium/EuropeanRugbyChampionsCupRanking/input/04 - ERCC 2017-2018.txt +65 -0
  974. package/config/medium/EuropeanRugbyChampionsCupRanking/input/05 - ERCC 2018-2019.txt +65 -0
  975. package/config/medium/EuropeanRugbyChampionsCupRanking/output/01 - CHALLENGE CUP 2014-2015.txt +4 -0
  976. package/config/medium/EuropeanRugbyChampionsCupRanking/output/02 - ERCC 2015-2016.txt +4 -0
  977. package/config/medium/EuropeanRugbyChampionsCupRanking/output/03 - ERCC 2016-2017.txt +4 -0
  978. package/config/medium/EuropeanRugbyChampionsCupRanking/output/04 - ERCC 2017-2018.txt +4 -0
  979. package/config/medium/EuropeanRugbyChampionsCupRanking/output/05 - ERCC 2018-2019.txt +4 -0
  980. package/config/medium/GuessingDigits/code/CGCode.js +7 -0
  981. package/config/medium/GuessingDigits/code/CGCode.php +8 -0
  982. package/config/medium/GuessingDigits/config.json +48 -0
  983. package/config/medium/GuessingDigits/input/01 - test 1.txt +2 -0
  984. package/config/medium/GuessingDigits/input/02 - test 2.txt +2 -0
  985. package/config/medium/GuessingDigits/input/03 - test 3.txt +2 -0
  986. package/config/medium/GuessingDigits/input/04 - test 4.txt +2 -0
  987. package/config/medium/GuessingDigits/input/05 - test 5.txt +2 -0
  988. package/config/medium/GuessingDigits/input/06 - test 6.txt +2 -0
  989. package/config/medium/GuessingDigits/input/07 - test 7.txt +2 -0
  990. package/config/medium/GuessingDigits/input/08 - test 8.txt +2 -0
  991. package/config/medium/GuessingDigits/output/01 - test 1.txt +1 -0
  992. package/config/medium/GuessingDigits/output/02 - test 2.txt +1 -0
  993. package/config/medium/GuessingDigits/output/03 - test 3.txt +1 -0
  994. package/config/medium/GuessingDigits/output/04 - test 4.txt +1 -0
  995. package/config/medium/GuessingDigits/output/05 - test 5.txt +1 -0
  996. package/config/medium/GuessingDigits/output/06 - test 6.txt +1 -0
  997. package/config/medium/GuessingDigits/output/07 - test 7.txt +1 -0
  998. package/config/medium/GuessingDigits/output/08 - test 8.txt +1 -0
  999. package/config/medium/GuessingNCheating/code/CGCode.js +9 -0
  1000. package/config/medium/GuessingNCheating/code/CGCode.php +11 -0
  1001. package/config/medium/GuessingNCheating/config.json +63 -0
  1002. package/config/medium/GuessingNCheating/input/01 - Sample cheating.txt +4 -0
  1003. package/config/medium/GuessingNCheating/input/02 - Cheat right in the face.txt +6 -0
  1004. package/config/medium/GuessingNCheating/input/03 - Bob in a mess.txt +9 -0
  1005. package/config/medium/GuessingNCheating/input/04 - Contradiction.txt +7 -0
  1006. package/config/medium/GuessingNCheating/input/05 - Good Luck.txt +2 -0
  1007. package/config/medium/GuessingNCheating/input/06 - Sequence.txt +15 -0
  1008. package/config/medium/GuessingNCheating/input/07 - Impossible.txt +4 -0
  1009. package/config/medium/GuessingNCheating/input/08 - Repetition.txt +8 -0
  1010. package/config/medium/GuessingNCheating/input/09 - Elimination.txt +8 -0
  1011. package/config/medium/GuessingNCheating/input/10 - Right at the end.txt +8 -0
  1012. package/config/medium/GuessingNCheating/input/11 - Weird reasoning.txt +5 -0
  1013. package/config/medium/GuessingNCheating/output/01 - Sample cheating.txt +1 -0
  1014. package/config/medium/GuessingNCheating/output/02 - Cheat right in the face.txt +1 -0
  1015. package/config/medium/GuessingNCheating/output/03 - Bob in a mess.txt +1 -0
  1016. package/config/medium/GuessingNCheating/output/04 - Contradiction.txt +1 -0
  1017. package/config/medium/GuessingNCheating/output/05 - Good Luck.txt +1 -0
  1018. package/config/medium/GuessingNCheating/output/06 - Sequence.txt +1 -0
  1019. package/config/medium/GuessingNCheating/output/07 - Impossible.txt +1 -0
  1020. package/config/medium/GuessingNCheating/output/08 - Repetition.txt +1 -0
  1021. package/config/medium/GuessingNCheating/output/09 - Elimination.txt +1 -0
  1022. package/config/medium/GuessingNCheating/output/10 - Right at the end.txt +1 -0
  1023. package/config/medium/GuessingNCheating/output/11 - Weird reasoning.txt +1 -0
  1024. package/config/medium/HTMLTableCellSplit/code/CGCode.js +12 -0
  1025. package/config/medium/HTMLTableCellSplit/code/CGCode.php +12 -0
  1026. package/config/medium/HTMLTableCellSplit/config.json +43 -0
  1027. package/config/medium/HTMLTableCellSplit/input/01 - Just check if statement clear.txt +4 -0
  1028. package/config/medium/HTMLTableCellSplit/input/02 - Let/342/200/231s start seriously.txt" +5 -0
  1029. package/config/medium/HTMLTableCellSplit/input/03 - In the middle of spans.txt +6 -0
  1030. package/config/medium/HTMLTableCellSplit/input/04 - Care to above.txt +5 -0
  1031. package/config/medium/HTMLTableCellSplit/input/05 - Split in rows.txt +5 -0
  1032. package/config/medium/HTMLTableCellSplit/input/06 - Complex by col.txt +7 -0
  1033. package/config/medium/HTMLTableCellSplit/input/07 - Complex by row.txt +7 -0
  1034. package/config/medium/HTMLTableCellSplit/output/01 - Just check if statement clear.txt +2 -0
  1035. package/config/medium/HTMLTableCellSplit/output/02 - Let/342/200/231s start seriously.txt" +3 -0
  1036. package/config/medium/HTMLTableCellSplit/output/03 - In the middle of spans.txt +4 -0
  1037. package/config/medium/HTMLTableCellSplit/output/04 - Care to above.txt +3 -0
  1038. package/config/medium/HTMLTableCellSplit/output/05 - Split in rows.txt +4 -0
  1039. package/config/medium/HTMLTableCellSplit/output/06 - Complex by col.txt +5 -0
  1040. package/config/medium/HTMLTableCellSplit/output/07 - Complex by row.txt +6 -0
  1041. package/config/medium/Hunger/code/CGCode.js +12 -0
  1042. package/config/medium/Hunger/code/CGCode.php +12 -0
  1043. package/config/medium/Hunger/config.json +28 -0
  1044. package/config/medium/Hunger/input/01 - Sample.txt +2 -0
  1045. package/config/medium/Hunger/input/02 - Burp.txt +2 -0
  1046. package/config/medium/Hunger/input/03 - (.txt +2 -0
  1047. package/config/medium/Hunger/input/04 - It/342/200/231s the reward that matters.txt" +2 -0
  1048. package/config/medium/Hunger/output/01 - Sample.txt +1 -0
  1049. package/config/medium/Hunger/output/02 - Burp.txt +1 -0
  1050. package/config/medium/Hunger/output/03 - (.txt +1 -0
  1051. package/config/medium/Hunger/output/04 - It/342/200/231s the reward that matters.txt" +1 -0
  1052. package/config/medium/LostAstronaut/code/CGCode.js +7 -0
  1053. package/config/medium/LostAstronaut/code/CGCode.php +8 -0
  1054. package/config/medium/LostAstronaut/config.json +43 -0
  1055. package/config/medium/LostAstronaut/input/01 - all binary.txt +2 -0
  1056. package/config/medium/LostAstronaut/input/02 - all octaldecimal.txt +2 -0
  1057. package/config/medium/LostAstronaut/input/03 - all hexadecimal.txt +2 -0
  1058. package/config/medium/LostAstronaut/input/04 - random test.txt +2 -0
  1059. package/config/medium/LostAstronaut/input/05 - 1st Signal.txt +2 -0
  1060. package/config/medium/LostAstronaut/input/06 - 2nd Signal.txt +2 -0
  1061. package/config/medium/LostAstronaut/input/07 - 3rd Signal.txt +2 -0
  1062. package/config/medium/LostAstronaut/output/01 - all binary.txt +1 -0
  1063. package/config/medium/LostAstronaut/output/02 - all octaldecimal.txt +1 -0
  1064. package/config/medium/LostAstronaut/output/03 - all hexadecimal.txt +1 -0
  1065. package/config/medium/LostAstronaut/output/04 - random test.txt +1 -0
  1066. package/config/medium/LostAstronaut/output/05 - 1st Signal.txt +1 -0
  1067. package/config/medium/LostAstronaut/output/06 - 2nd Signal.txt +1 -0
  1068. package/config/medium/LostAstronaut/output/07 - 3rd Signal.txt +1 -0
  1069. package/config/medium/NonTripleNumbers/code/CGCode.js +6 -0
  1070. package/config/medium/NonTripleNumbers/code/CGCode.php +7 -0
  1071. package/config/medium/NonTripleNumbers/config.json +58 -0
  1072. package/config/medium/NonTripleNumbers/input/01 - n = 27.txt +1 -0
  1073. package/config/medium/NonTripleNumbers/input/02 - n = 367.txt +1 -0
  1074. package/config/medium/NonTripleNumbers/input/03 - n = 4943.txt +1 -0
  1075. package/config/medium/NonTripleNumbers/input/04 - n = 349525.txt +1 -0
  1076. package/config/medium/NonTripleNumbers/input/05 - n = 209919.txt +1 -0
  1077. package/config/medium/NonTripleNumbers/input/06 - n = 1048575.txt +1 -0
  1078. package/config/medium/NonTripleNumbers/input/07 - n = 6804756.txt +1 -0
  1079. package/config/medium/NonTripleNumbers/input/08 - n = 227978622.txt +1 -0
  1080. package/config/medium/NonTripleNumbers/input/09 - n = 380810157.txt +1 -0
  1081. package/config/medium/NonTripleNumbers/input/10 - n = 1072693248.txt +1 -0
  1082. package/config/medium/NonTripleNumbers/output/01 - n = 27.txt +1 -0
  1083. package/config/medium/NonTripleNumbers/output/02 - n = 367.txt +1 -0
  1084. package/config/medium/NonTripleNumbers/output/03 - n = 4943.txt +1 -0
  1085. package/config/medium/NonTripleNumbers/output/04 - n = 349525.txt +1 -0
  1086. package/config/medium/NonTripleNumbers/output/05 - n = 209919.txt +1 -0
  1087. package/config/medium/NonTripleNumbers/output/06 - n = 1048575.txt +1 -0
  1088. package/config/medium/NonTripleNumbers/output/07 - n = 6804756.txt +1 -0
  1089. package/config/medium/NonTripleNumbers/output/08 - n = 227978622.txt +1 -0
  1090. package/config/medium/NonTripleNumbers/output/09 - n = 380810157.txt +1 -0
  1091. package/config/medium/NonTripleNumbers/output/10 - n = 1072693248.txt +1 -0
  1092. package/config/medium/PachinkoJackpot/code/CGCode.js +13 -0
  1093. package/config/medium/PachinkoJackpot/code/CGCode.php +16 -0
  1094. package/config/medium/PachinkoJackpot/config.json +68 -0
  1095. package/config/medium/PachinkoJackpot/input/01 - Example.txt +12 -0
  1096. package/config/medium/PachinkoJackpot/input/02 - Multipliers.txt +8 -0
  1097. package/config/medium/PachinkoJackpot/input/03 - Flat prizes.txt +12 -0
  1098. package/config/medium/PachinkoJackpot/input/04 - Missing catcher.txt +10 -0
  1099. package/config/medium/PachinkoJackpot/input/05 - Triple Potential.txt +20 -0
  1100. package/config/medium/PachinkoJackpot/input/06 - Level pegging.txt +16 -0
  1101. package/config/medium/PachinkoJackpot/input/07 - Smallish.txt +26 -0
  1102. package/config/medium/PachinkoJackpot/input/08 - Medium.txt +40 -0
  1103. package/config/medium/PachinkoJackpot/input/09 - Large.txt +50 -0
  1104. package/config/medium/PachinkoJackpot/input/10 - Extra large.txt +66 -0
  1105. package/config/medium/PachinkoJackpot/input/11 - Giant.txt +102 -0
  1106. package/config/medium/PachinkoJackpot/input/12 - Monster.txt +204 -0
  1107. package/config/medium/PachinkoJackpot/output/01 - Example.txt +1 -0
  1108. package/config/medium/PachinkoJackpot/output/02 - Multipliers.txt +1 -0
  1109. package/config/medium/PachinkoJackpot/output/03 - Flat prizes.txt +1 -0
  1110. package/config/medium/PachinkoJackpot/output/04 - Missing catcher.txt +1 -0
  1111. package/config/medium/PachinkoJackpot/output/05 - Triple Potential.txt +1 -0
  1112. package/config/medium/PachinkoJackpot/output/06 - Level pegging.txt +1 -0
  1113. package/config/medium/PachinkoJackpot/output/07 - Smallish.txt +1 -0
  1114. package/config/medium/PachinkoJackpot/output/08 - Medium.txt +1 -0
  1115. package/config/medium/PachinkoJackpot/output/09 - Large.txt +1 -0
  1116. package/config/medium/PachinkoJackpot/output/10 - Extra large.txt +1 -0
  1117. package/config/medium/PachinkoJackpot/output/11 - Giant.txt +1 -0
  1118. package/config/medium/PachinkoJackpot/output/12 - Monster.txt +1 -0
  1119. package/config/medium/PlaceTheParenthesis/code/CGCode.js +9 -0
  1120. package/config/medium/PlaceTheParenthesis/code/CGCode.php +11 -0
  1121. package/config/medium/PlaceTheParenthesis/config.json +28 -0
  1122. package/config/medium/PlaceTheParenthesis/input/01 - Example.txt +2 -0
  1123. package/config/medium/PlaceTheParenthesis/input/02 - No parenthesis.txt +4 -0
  1124. package/config/medium/PlaceTheParenthesis/input/03 - Negativity.txt +4 -0
  1125. package/config/medium/PlaceTheParenthesis/input/04 - Test 4.txt +4 -0
  1126. package/config/medium/PlaceTheParenthesis/output/01 - Example.txt +1 -0
  1127. package/config/medium/PlaceTheParenthesis/output/02 - No parenthesis.txt +3 -0
  1128. package/config/medium/PlaceTheParenthesis/output/03 - Negativity.txt +3 -0
  1129. package/config/medium/PlaceTheParenthesis/output/04 - Test 4.txt +3 -0
  1130. package/config/medium/RailwayStationClock/code/CGCode.js +6 -0
  1131. package/config/medium/RailwayStationClock/code/CGCode.php +7 -0
  1132. package/config/medium/RailwayStationClock/config.json +68 -0
  1133. package/config/medium/RailwayStationClock/input/01 - Little off.txt +1 -0
  1134. package/config/medium/RailwayStationClock/input/02 - Just adjusted.txt +1 -0
  1135. package/config/medium/RailwayStationClock/input/03 - Little more.txt +1 -0
  1136. package/config/medium/RailwayStationClock/input/04 - Half way.txt +1 -0
  1137. package/config/medium/RailwayStationClock/input/05 - Late or not.txt +1 -0
  1138. package/config/medium/RailwayStationClock/input/06 - Bear with it.txt +1 -0
  1139. package/config/medium/RailwayStationClock/input/07 - Confusing.txt +1 -0
  1140. package/config/medium/RailwayStationClock/input/08 - Still confusing.txt +1 -0
  1141. package/config/medium/RailwayStationClock/input/09 - It happens.txt +1 -0
  1142. package/config/medium/RailwayStationClock/input/10 - Yesterday or tomorrow.txt +1 -0
  1143. package/config/medium/RailwayStationClock/input/11 - Just late.txt +1 -0
  1144. package/config/medium/RailwayStationClock/input/12 - Early bird.txt +1 -0
  1145. package/config/medium/RailwayStationClock/output/01 - Little off.txt +1 -0
  1146. package/config/medium/RailwayStationClock/output/02 - Just adjusted.txt +1 -0
  1147. package/config/medium/RailwayStationClock/output/03 - Little more.txt +1 -0
  1148. package/config/medium/RailwayStationClock/output/04 - Half way.txt +1 -0
  1149. package/config/medium/RailwayStationClock/output/05 - Late or not.txt +1 -0
  1150. package/config/medium/RailwayStationClock/output/06 - Bear with it.txt +1 -0
  1151. package/config/medium/RailwayStationClock/output/07 - Confusing.txt +1 -0
  1152. package/config/medium/RailwayStationClock/output/08 - Still confusing.txt +1 -0
  1153. package/config/medium/RailwayStationClock/output/09 - It happens.txt +1 -0
  1154. package/config/medium/RailwayStationClock/output/10 - Yesterday or tomorrow.txt +1 -0
  1155. package/config/medium/RailwayStationClock/output/11 - Just late.txt +1 -0
  1156. package/config/medium/RailwayStationClock/output/12 - Early bird.txt +1 -0
  1157. package/config/medium/RandomTimeTravel/code/CGCode.js +11 -0
  1158. package/config/medium/RandomTimeTravel/code/CGCode.php +9 -0
  1159. package/config/medium/RandomTimeTravel/config.json +33 -0
  1160. package/config/medium/RandomTimeTravel/input/01 - Simple forward.txt +3 -0
  1161. package/config/medium/RandomTimeTravel/input/02 - Simple backward.txt +3 -0
  1162. package/config/medium/RandomTimeTravel/input/03 - Java Random 10 steps.txt +3 -0
  1163. package/config/medium/RandomTimeTravel/input/04 - Java Random -10 steps.txt +3 -0
  1164. package/config/medium/RandomTimeTravel/input/05 - Back to the future.txt +3 -0
  1165. package/config/medium/RandomTimeTravel/output/02 - Simple backward.txt +1 -0
  1166. package/config/medium/RandomTimeTravel/output/03 - Java Random 10 steps.txt +1 -0
  1167. package/config/medium/RandomTimeTravel/output/04 - Java Random -10 steps.txt +1 -0
  1168. package/config/medium/RandomTimeTravel/output/05 - Back to the future.txt +1 -0
  1169. package/config/medium/ReversePolishNotation/code/CGCode.js +10 -0
  1170. package/config/medium/ReversePolishNotation/code/CGCode.php +12 -0
  1171. package/config/medium/ReversePolishNotation/config.json +43 -0
  1172. package/config/medium/ReversePolishNotation/input/01 - Simple operation.txt +2 -0
  1173. package/config/medium/ReversePolishNotation/input/02 - More operations.txt +2 -0
  1174. package/config/medium/ReversePolishNotation/input/03 - Playing with the stack.txt +2 -0
  1175. package/config/medium/ReversePolishNotation/input/04 - Stack underflow.txt +2 -0
  1176. package/config/medium/ReversePolishNotation/input/05 - ROL.txt +2 -0
  1177. package/config/medium/ReversePolishNotation/input/06 - Divide by zero.txt +2 -0
  1178. package/config/medium/ReversePolishNotation/input/07 - Error In Progress.txt +2 -0
  1179. package/config/medium/ReversePolishNotation/output/01 - Simple operation.txt +1 -0
  1180. package/config/medium/ReversePolishNotation/output/02 - More operations.txt +1 -0
  1181. package/config/medium/ReversePolishNotation/output/03 - Playing with the stack.txt +1 -0
  1182. package/config/medium/ReversePolishNotation/output/04 - Stack underflow.txt +1 -0
  1183. package/config/medium/ReversePolishNotation/output/05 - ROL.txt +1 -0
  1184. package/config/medium/ReversePolishNotation/output/06 - Divide by zero.txt +1 -0
  1185. package/config/medium/ReversePolishNotation/output/07 - Error In Progress.txt +1 -0
  1186. package/config/medium/RocketEngines/code/CGCode.js +11 -0
  1187. package/config/medium/RocketEngines/code/CGCode.php +8 -0
  1188. package/config/medium/RocketEngines/config.json +58 -0
  1189. package/config/medium/RocketEngines/input/01 - test 1.txt +2 -0
  1190. package/config/medium/RocketEngines/input/02 - test 2.txt +2 -0
  1191. package/config/medium/RocketEngines/input/03 - test 3.txt +2 -0
  1192. package/config/medium/RocketEngines/input/04 - test 4.txt +2 -0
  1193. package/config/medium/RocketEngines/input/05 - test 5.txt +2 -0
  1194. package/config/medium/RocketEngines/input/06 - test 6.txt +2 -0
  1195. package/config/medium/RocketEngines/input/07 - test 7.txt +2 -0
  1196. package/config/medium/RocketEngines/input/08 - test 8.txt +2 -0
  1197. package/config/medium/RocketEngines/input/09 - test 9.txt +2 -0
  1198. package/config/medium/RocketEngines/input/10 - test 10.txt +2 -0
  1199. package/config/medium/RocketEngines/output/01 - test 1.txt +1 -0
  1200. package/config/medium/RocketEngines/output/02 - test 2.txt +1 -0
  1201. package/config/medium/RocketEngines/output/04 - test 4.txt +1 -0
  1202. package/config/medium/RocketEngines/output/05 - test 5.txt +1 -0
  1203. package/config/medium/RocketEngines/output/06 - test 6.txt +1 -0
  1204. package/config/medium/RocketEngines/output/07 - test 7.txt +1 -0
  1205. package/config/medium/RocketEngines/output/08 - test 8.txt +1 -0
  1206. package/config/medium/RocketEngines/output/09 - test 9.txt +1 -0
  1207. package/config/medium/RocketEngines/output/10 - test 10.txt +1 -0
  1208. package/config/medium/SmileFriezeCheese/code/CGCode.js +9 -0
  1209. package/config/medium/SmileFriezeCheese/code/CGCode.php +11 -0
  1210. package/config/medium/SmileFriezeCheese/config.json +43 -0
  1211. package/config/medium/SmileFriezeCheese/input/01 - p111.txt +5 -0
  1212. package/config/medium/SmileFriezeCheese/input/02 - p1m1.txt +5 -0
  1213. package/config/medium/SmileFriezeCheese/input/03 - pm11.txt +6 -0
  1214. package/config/medium/SmileFriezeCheese/input/04 - pmm2.txt +6 -0
  1215. package/config/medium/SmileFriezeCheese/input/05 - p112.txt +6 -0
  1216. package/config/medium/SmileFriezeCheese/input/06 - p1a1.txt +5 -0
  1217. package/config/medium/SmileFriezeCheese/input/07 - pma2.txt +4 -0
  1218. package/config/medium/SmileFriezeCheese/output/01 - p111.txt +1 -0
  1219. package/config/medium/SmileFriezeCheese/output/02 - p1m1.txt +1 -0
  1220. package/config/medium/SmileFriezeCheese/output/03 - pm11.txt +1 -0
  1221. package/config/medium/SmileFriezeCheese/output/04 - pmm2.txt +1 -0
  1222. package/config/medium/SmileFriezeCheese/output/05 - p112.txt +1 -0
  1223. package/config/medium/SmileFriezeCheese/output/06 - p1a1.txt +1 -0
  1224. package/config/medium/SmileFriezeCheese/output/07 - pma2.txt +1 -0
  1225. package/config/medium/ThermalFlyingEpisode1/code/CGCode.js +11 -0
  1226. package/config/medium/ThermalFlyingEpisode1/code/CGCode.php +13 -0
  1227. package/config/medium/ThermalFlyingEpisode1/config.json +43 -0
  1228. package/config/medium/ThermalFlyingEpisode1/input/01 - Morning Flight.txt +13 -0
  1229. package/config/medium/ThermalFlyingEpisode1/input/02 - Little thermal.txt +14 -0
  1230. package/config/medium/ThermalFlyingEpisode1/input/03 - Bigger thermal.txt +13 -0
  1231. package/config/medium/ThermalFlyingEpisode1/input/04 - Strong one with downdraft.txt +12 -0
  1232. package/config/medium/ThermalFlyingEpisode1/input/05 - Turbulent air.txt +13 -0
  1233. package/config/medium/ThermalFlyingEpisode1/input/06 - Cumulonimbus.txt +13 -0
  1234. package/config/medium/ThermalFlyingEpisode1/input/07 - Apocalyptic.txt +11 -0
  1235. package/config/medium/ThermalFlyingEpisode1/output/01 - Morning Flight.txt +1 -0
  1236. package/config/medium/ThermalFlyingEpisode1/output/02 - Little thermal.txt +1 -0
  1237. package/config/medium/ThermalFlyingEpisode1/output/03 - Bigger thermal.txt +1 -0
  1238. package/config/medium/ThermalFlyingEpisode1/output/04 - Strong one with downdraft.txt +1 -0
  1239. package/config/medium/ThermalFlyingEpisode1/output/05 - Turbulent air.txt +1 -0
  1240. package/config/medium/ThermalFlyingEpisode1/output/06 - Cumulonimbus.txt +1 -0
  1241. package/config/medium/ThermalFlyingEpisode1/output/07 - Apocalyptic.txt +1 -0
  1242. package/config/medium/VariousNumberSpirals/code/CGCode.js +12 -0
  1243. package/config/medium/VariousNumberSpirals/code/CGCode.php +9 -0
  1244. package/config/medium/VariousNumberSpirals/config.json +33 -0
  1245. package/config/medium/VariousNumberSpirals/input/01 - Example.txt +3 -0
  1246. package/config/medium/VariousNumberSpirals/input/02 - Counter-clockwise.txt +3 -0
  1247. package/config/medium/VariousNumberSpirals/input/03 - Primitive.txt +3 -0
  1248. package/config/medium/VariousNumberSpirals/input/04 - Big one.txt +3 -0
  1249. package/config/medium/VariousNumberSpirals/input/05 - Descending.txt +3 -0
  1250. package/config/medium/VariousNumberSpirals/output/01 - Example.txt +3 -0
  1251. package/config/medium/VariousNumberSpirals/output/02 - Counter-clockwise.txt +4 -0
  1252. package/config/medium/VariousNumberSpirals/output/03 - Primitive.txt +1 -0
  1253. package/config/medium/VariousNumberSpirals/output/04 - Big one.txt +10 -0
  1254. package/config/medium/VariousNumberSpirals/output/05 - Descending.txt +5 -0
  1255. package/config/{easy → medium}/ZhiweiSunSquares/config.json +1 -1
  1256. package/config/medium/ZhiweiSunSquares/output/02 - test 2.txt +1 -0
  1257. package/config/medium/ZhiweiSunSquares/output/03 - test 3.txt +1 -0
  1258. package/config/medium/ZhiweiSunSquares/output/05 - test 5.txt +1 -0
  1259. package/config/medium/ZhiweiSunSquares/output/09 - test 9.txt +1 -0
  1260. package/package.json +1 -1
  1261. /package/config/{easy/ZhiweiSunSquares/output/02 - test 2.txt → hard/FoldAndCut/output/03 - test 3.txt} +0 -0
  1262. /package/config/{easy/ZhiweiSunSquares/output/09 - test 9.txt → medium/Criminal/output/07 - In A House.txt07 - In A House.txt} +0 -0
  1263. /package/config/{easy/ZhiweiSunSquares/output/01 - test 1.txt → medium/RandomTimeTravel/output/01 - Simple forward.txt} +0 -0
  1264. /package/config/{easy/ZhiweiSunSquares/input/01 - test 1.txt → medium/RocketEngines/output/03 - test 3.txt} +0 -0
  1265. /package/config/{easy → medium}/ZhiweiSunSquares/code/CGCode.js +0 -0
  1266. /package/config/{easy → medium}/ZhiweiSunSquares/code/CGCode.php +0 -0
  1267. /package/config/{easy/ZhiweiSunSquares/output/04 - test 4.txt → medium/ZhiweiSunSquares/input/01 - test 1.txt} +0 -0
  1268. /package/config/{easy → medium}/ZhiweiSunSquares/input/02 - test 2.txt +0 -0
  1269. /package/config/{easy → medium}/ZhiweiSunSquares/input/03 - test 3.txt +0 -0
  1270. /package/config/{easy → medium}/ZhiweiSunSquares/input/04 - test 4.txt +0 -0
  1271. /package/config/{easy → medium}/ZhiweiSunSquares/input/05 - test 5.txt +0 -0
  1272. /package/config/{easy → medium}/ZhiweiSunSquares/input/06 - test 6.txt +0 -0
  1273. /package/config/{easy → medium}/ZhiweiSunSquares/input/07 - test 7.txt +0 -0
  1274. /package/config/{easy → medium}/ZhiweiSunSquares/input/08 - test 8.txt +0 -0
  1275. /package/config/{easy → medium}/ZhiweiSunSquares/input/09 - test 9.txt +0 -0
  1276. /package/config/{easy/ZhiweiSunSquares/output/03 - test 3.txt → medium/ZhiweiSunSquares/output/01 - test 1.txt} +0 -0
  1277. /package/config/{easy/ZhiweiSunSquares/output/05 - test 5.txt → medium/ZhiweiSunSquares/output/04 - test 4.txt} +0 -0
  1278. /package/config/{easy → medium}/ZhiweiSunSquares/output/06 - test 6.txt +0 -0
  1279. /package/config/{easy → medium}/ZhiweiSunSquares/output/07 - test 7.txt +0 -0
  1280. /package/config/{easy → medium}/ZhiweiSunSquares/output/08 - test 8.txt +0 -0
@@ -0,0 +1,33 @@
1
+ 16
2
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
3
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
4
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
5
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
6
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
7
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
8
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
9
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
10
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
11
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
12
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
13
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
14
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
15
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
16
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
17
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
18
+ a=12 b=13 c=19 d=10 e=24 f=19 g=15 h=12 i=13 j=22 k=10 l=16 m=17 n=23 o=12 p=24 q=14 r=7 s=9 t=21 u=3 v=21 w=10 x=30 y=13 z=9 A=7
19
+ a=10 b=12 c=25 d=16 e=17 f=12 g=25 h=14 i=9 j=22 k=12 l=17 m=27 n=18 o=9 p=14 q=10 r=12 s=5 t=16 u=13 v=24 w=8 x=23 y=12 z=17 A=6
20
+ a=18 b=5 c=11 d=11 e=14 f=12 g=24 h=7 i=15 j=15 k=15 l=8 m=13 n=10 o=23 p=8 q=5 r=11 s=15 t=12 u=38 v=14 w=14 x=3 y=17 z=16 A=6 B=10 C=7 D=10 E=9 F=9
21
+ a=12 b=5 c=10 d=16 e=18 f=12 g=35 h=8 i=9 j=12 k=6 l=17 m=5 n=9 o=26 p=11 q=7 r=7 s=18 t=12 u=33 v=12 w=12 x=11 y=20 z=8 A=9 B=8 C=8 D=7 E=14 F=8
22
+ a=10 b=24 c=6 d=11 e=15 f=5 g=19 h=14 i=12 j=16 k=9 l=14 m=16 n=15 o=8 p=9 q=13 r=13 s=7 t=17 u=14 v=11 w=5 x=11 y=6 z=24 A=15 B=24 C=6 D=18 E=15 F=3
23
+ a=8 b=16 c=11 d=13 e=13 f=17 g=20 h=12 i=9 j=12 k=7 l=17 m=23 n=17 o=8 p=11 q=17 r=4 s=11 t=16 u=7 v=8 w=14 x=3 y=13 z=14 A=17 B=25 C=11 D=17 E=9 F=5
24
+ a=17 b=12 c=11 d=18 e=13 f=7 g=14 h=5 i=20 j=9 k=10 l=20 m=22 n=14 o=9 p=14 q=11 r=12 s=7 t=13 u=17 v=11 w=14 x=18 y=6 z=13 A=15 B=8 C=15 D=14 E=10 F=6
25
+ a=15 b=9 c=12 d=18 e=8 f=13 g=12 h=9 i=23 j=8 k=15 l=8 m=22 n=20 o=7 p=18 q=15 r=15 s=13 t=8 u=10 v=10 w=11 x=12 y=13 z=8 A=17 B=14 C=7 D=13 E=9 F=13
26
+ a=2 b=22 c=12 d=19 e=28 f=10 g=13 h=10 i=11 j=11 k=17 l=11 m=5 n=19 o=13 p=10 q=16 r=8 s=6 t=10 u=12 v=9 w=3 x=9 y=9 z=25 A=20 B=22 C=1 D=14 E=4 F=2 G=22
27
+ a=8 b=20 c=10 d=21 e=18 f=9 g=17 h=7 i=20 j=8 k=18 l=17 m=2 n=16 o=15 p=11 q=20 r=8 s=7 t=13 u=7 v=8 w=4 x=14 y=7 z=36 A=9 B=9 C=4 D=18 E=2 F=1 G=21
28
+ a=25 b=24 c=7 d=24 e=8 f=31 g=15 h=12 i=12 j=8 k=17 l=5 m=15 n=9 o=10 p=21 q=3 r=6 s=9 t=28 u=5 v=9 w=10 x=21 y=30 z=29 A=12
29
+ a=23 b=24 c=11 d=23 e=7 f=31 g=12 h=12 i=12 j=6 k=18 l=8 m=18 n=7 o=5 p=17 q=8 r=9 s=14 t=34 u=6 v=7 w=11 x=18 y=28 z=29 A=7
30
+ a=31 b=18 c=15 d=10 e=25 f=15 g=15 h=17 i=11 j=10 k=18 l=16 m=10 n=20 o=23 p=3 q=7 r=9 s=13 t=16 u=23 v=23 w=19 x=22 y=12 z=4
31
+ a=24 b=20 c=18 d=16 e=26 f=9 g=17 h=17 i=10 j=7 k=24 l=18 m=8 n=18 o=15 p=6 q=14 r=14 s=13 t=13 u=22 v=15 w=14 x=23 y=15 z=9
32
+ a=14 b=5 c=10 d=3 e=26 f=20 g=17 h=15 i=7 j=14 k=11 l=13 m=14 n=12 o=10 p=15 q=17 r=3 s=26 t=13 u=13 v=16 w=16 x=10 y=9 z=7 A=9 B=1 C=14 D=16 E=11 F=18
33
+ a=9 b=12 c=12 d=7 e=27 f=18 g=12 h=15 i=9 j=10 k=13 l=11 m=17 n=13 o=10 p=15 q=12 r=4 s=22 t=17 u=10 v=12 w=17 x=16 y=9 z=5 A=8 B=4 C=14 D=20 E=11 F=14
@@ -0,0 +1,65 @@
1
+ 32
2
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
3
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
4
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
5
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
6
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
7
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
8
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
9
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
10
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
11
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
12
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
13
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
14
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
15
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
16
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
17
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
18
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
19
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
20
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
21
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
22
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
23
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
24
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
25
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
26
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
27
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
28
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
29
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
30
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
31
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
32
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
33
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
34
+ a=4 b=26 c=6 d=15 e=8 f=11 g=18 h=16 i=9 j=10 k=14 l=17 m=19 n=17 o=5 p=14 q=10 r=13 s=9 t=21 u=8 v=8 w=13 x=10 y=7 z=17 A=12 B=23 C=8 D=16 E=13 F=8
35
+ a=5 b=11 c=12 d=22 e=24 f=11 g=20 h=8 i=16 j=12 k=13 l=12 m=5 n=20 o=21 p=10 q=19 r=9 s=4 t=8 u=14 v=8 w=1 x=8 y=13 z=29 A=16 B=14 C=5 D=14 E=3 F=1 G=17
36
+ a=23 b=18 c=17 d=15 e=27 f=13 g=18 h=17 i=8 j=10 k=29 l=12 m=15 n=23 o=18 p=6 q=13 r=3 s=13 t=7 u=24 v=14 w=19 x=21 y=11 z=11
37
+ a=16 b=13 c=18 d=14 e=13 f=12 g=25 h=10 i=16 j=13 k=16 l=19 m=24 n=21 o=5 p=20 q=22 r=7 s=13 t=10 u=8 v=16 w=20 x=22 y=8 z=14 A=10
38
+ a=14 b=3 c=8 d=17 e=21 f=10 g=27 h=8 i=12 j=9 k=12 l=16 m=3 n=14 o=16 p=12 q=15 r=8 s=16 t=10 u=34 v=16 w=17 x=7 y=23 z=5 A=9 B=10 C=7 D=10 E=8 F=8
39
+ a=21 b=23 c=13 d=24 e=8 f=31 g=15 h=5 i=7 j=9 k=17 l=9 m=21 n=15 o=4 p=12 q=8 r=9 s=14 t=31 u=13 v=10 w=9 x=22 y=21 z=28 A=6
40
+ a=3 b=21 c=8 d=25 e=22 f=12 g=18 h=6 i=20 j=11 k=14 l=10 m=3 n=24 o=14 p=16 q=19 r=7 s=7 t=6 u=9 v=2 w=1 x=8 y=13 z=29 A=16 B=18 C=3 D=15 E=4 F=7 G=14
41
+ a=19 b=11 c=5 d=5 e=27 f=15 g=14 h=20 i=2 j=16 k=3 l=11 m=15 n=20 o=14 p=11 q=8 r=14 s=19 t=9 u=16 v=16 w=14 x=14 y=8 z=16 A=5 B=5 C=8 D=20 E=10 F=15
42
+ a=2 b=15 c=14 d=20 e=19 f=9 g=27 h=9 i=15 j=10 k=18 l=8 m=5 n=27 o=18 p=10 q=11 r=4 s=4 t=7 u=11 v=9 w=8 x=13 y=11 z=31 A=14 B=18 C=7 D=7 E=8 F=3 G=13
43
+ a=18 b=19 c=14 d=7 e=23 f=15 g=26 h=9 i=8 j=20 k=13 l=13 m=25 n=6 o=14 p=20 q=16 r=13 s=8 t=15 u=13 v=20 w=13 x=21 y=17 z=16 A=3
44
+ a=21 b=23 c=19 d=13 e=35 f=17 g=12 h=11 i=7 j=11 k=25 l=15 m=10 n=23 o=11 p=10 q=10 r=6 s=8 t=13 u=35 v=19 w=22 x=10 y=15 z=4
45
+ a=26 b=22 c=17 d=19 e=9 f=26 g=14 h=3 i=13 j=7 k=24 l=10 m=8 n=13 o=15 p=13 q=4 r=7 s=10 t=35 u=10 v=12 w=3 x=25 y=29 z=27 A=4
46
+ a=12 b=21 c=5 d=12 e=11 f=3 g=24 h=16 i=16 j=15 k=7 l=10 m=21 n=18 o=9 p=13 q=9 r=9 s=6 t=21 u=9 v=15 w=10 x=10 y=8 z=20 A=12 B=17 C=6 D=20 E=12 F=8
47
+ a=23 b=23 c=11 d=20 e=9 f=31 g=11 h=5 i=15 j=8 k=14 l=11 m=21 n=12 o=7 p=19 q=3 r=17 s=10 t=21 u=11 v=11 w=11 x=19 y=26 z=21 A=15
48
+ a=18 b=11 c=14 d=17 e=11 f=11 g=9 h=3 i=26 j=11 k=8 l=13 m=19 n=15 o=16 p=14 q=14 r=11 s=7 t=17 u=11 v=14 w=15 x=18 y=12 z=12 A=18 B=3 C=11 D=10 E=9 F=7
49
+ a=18 b=13 c=3 d=12 e=24 f=12 g=24 h=11 i=6 j=8 k=12 l=14 m=8 n=9 o=22 p=13 q=10 r=6 s=19 t=10 u=24 v=15 w=19 x=14 y=23 z=3 A=8 B=10 C=5 D=16 E=5 F=9
50
+ a=21 b=16 c=10 d=17 e=19 f=11 g=29 h=9 i=4 j=16 k=13 l=22 m=21 n=13 o=12 p=15 q=20 r=11 s=7 t=17 u=12 v=27 w=15 x=11 y=5 z=21 A=11
51
+ a=6 b=21 c=12 d=16 e=5 f=11 g=17 h=6 i=24 j=10 k=12 l=14 m=22 n=14 o=11 p=16 q=18 r=8 s=14 t=4 u=14 v=11 w=19 x=14 y=7 z=15 A=18 B=12 C=10 D=5 E=5 F=14
52
+ a=26 b=30 c=16 d=16 e=25 f=7 g=13 h=17 i=7 j=6 k=18 l=24 m=15 n=19 o=9 p=7 q=9 r=14 s=12 t=15 u=36 v=26 w=14 x=9 y=8 z=7
53
+ a=24 b=19 c=13 d=25 e=8 f=33 g=8 h=12 i=5 j=7 k=20 l=13 m=9 n=9 o=13 p=18 q=8 r=13 s=17 t=28 u=13 v=5 w=5 x=29 y=21 z=22 A=8
54
+ a=19 b=14 c=18 d=16 e=16 f=13 g=21 h=10 i=8 j=17 k=11 l=24 m=18 n=21 o=13 p=22 q=15 r=5 s=4 t=19 u=11 v=22 w=11 x=25 y=11 z=11 A=10
55
+ a=6 b=30 c=6 d=9 e=12 f=4 g=15 h=16 i=14 j=12 k=17 l=14 m=16 n=15 o=8 p=10 q=15 r=7 s=14 t=21 u=6 v=11 w=15 x=8 y=3 z=24 A=13 B=23 C=4 D=16 E=13 F=8
56
+ a=8 b=7 c=16 d=10 e=22 f=19 g=14 h=19 i=6 j=12 k=11 l=8 m=17 n=14 o=6 p=17 q=15 r=7 s=25 t=10 u=15 v=17 w=11 x=15 y=9 z=8 A=10 B=3 C=9 D=24 E=7 F=14
57
+ a=23 b=28 c=19 d=10 e=27 f=15 g=14 h=13 i=12 j=3 k=21 l=21 m=15 n=13 o=9 p=13 q=15 r=13 s=13 t=15 u=28 v=20 w=13 x=17 y=7 z=8
58
+ a=5 b=22 c=8 d=11 e=15 f=14 g=17 h=12 i=6 j=12 k=8 l=16 m=27 n=21 o=5 p=15 q=13 r=4 s=10 t=16 u=11 v=9 w=12 x=6 y=6 z=19 A=21 B=27 C=9 D=18 E=7 F=3
59
+ a=16 b=8 c=12 d=17 e=13 f=15 g=26 h=8 i=5 j=10 k=9 l=10 m=12 n=17 o=22 p=11 q=5 r=9 s=20 t=5 u=25 v=7 w=20 x=10 y=19 z=14 A=10 B=17 C=9 D=13 E=6 F=5
60
+ a=17 b=10 c=11 d=5 e=24 f=18 g=12 h=17 i=2 j=15 k=12 l=12 m=16 n=12 o=12 p=15 q=14 r=7 s=24 t=10 u=13 v=16 w=11 x=18 y=6 z=9 A=9 B=3 C=10 D=24 E=7 F=14
61
+ a=2 b=14 c=13 d=23 e=28 f=12 g=20 h=4 i=17 j=5 k=23 l=9 m=3 n=14 o=18 p=11 q=13 r=12 s=8 t=12 u=15 v=3 w=6 x=10 y=7 z=33 A=12 B=17 C=8 D=12 E=1 F=6 G=14
62
+ a=14 b=7 c=11 d=15 e=19 f=11 g=28 h=5 i=12 j=12 k=15 l=11 m=4 n=14 o=18 p=11 q=15 r=3 s=19 t=7 u=21 v=18 w=19 x=17 y=18 z=8 A=7 B=10 C=5 D=16 E=6 F=9
63
+ a=15 b=15 c=6 d=18 e=12 f=17 g=10 h=3 i=20 j=4 k=14 l=17 m=16 n=11 o=16 p=14 q=18 r=12 s=12 t=15 u=10 v=13 w=16 x=18 y=6 z=15 A=14 B=11 C=11 D=11 E=5 F=10
64
+ a=12 b=20 c=11 d=16 e=10 f=11 g=13 h=7 i=25 j=3 k=11 l=12 m=24 n=13 o=14 p=14 q=16 r=13 s=14 t=9 u=8 v=13 w=10 x=13 y=15 z=12 A=21 B=10 C=6 D=10 E=13 F=6
65
+ a=13 b=15 c=6 d=10 e=23 f=24 g=14 h=12 i=3 j=11 k=11 l=15 m=9 n=15 o=17 p=10 q=15 r=7 s=24 t=9 u=14 v=16 w=11 x=15 y=8 z=11 A=9 B=5 C=8 D=24 E=8 F=13
@@ -0,0 +1,81 @@
1
+ 40
2
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
3
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
4
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
5
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
6
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
7
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
8
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
9
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
10
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
11
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
12
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
13
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
14
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
15
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
16
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
17
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
18
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
19
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
20
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
21
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
22
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
23
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
24
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
25
+ abbbcccdeafffggcdeahiigjkkeahllgjjkemmnloppqqmnnloprqqmsstttruuvvvvwwwxxyyzzzAAxx
26
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
27
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
28
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
29
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
30
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
31
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
32
+ abbcccdddaabefghiijkkefghiljmnnnooilmmmppqqrlsttpuuqrrsvwwwxxxyzvvABBCCyzDDAAEEFF
33
+ aabbccddeffbgghiiejkbgghhlljkmmmmnlojpqqrrnsotpuuvwnsxtyyzvwAAxtzzzBCCADEEBBBBFDD
34
+ abcccdeeefbbgddhiefjggdkhilfjmgkknilooppqqnrrsotuvqnnwxxtuyyzzABCDDEFzAABBDGGGzzz
35
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
36
+ abcddeeffabcgeehhfaiggjjkhhlmmnnnkoollmppqqqrssttuuvvrsswwwuvxxyzzAABCCxDDDDEEFFF
37
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
38
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
39
+ aabbccddeafghhiidejfggklmmejjgnkloppqqgnooorrstuuvwwxxstuuvvwyzsAuuByyyzCADDBEEFF
40
+ aabbbccddaabeffgddahbeffgiijhklmfgnnjkklmoppqrrstmopuqvvsttwxuyzzsttwxyyzzAAxxxyy
41
+ aaabbbbcdaeeebffcdaeeghijcckegghijllkkmmnnolpkqrrnnoopkqssttuuuvvvwwtuuxyyvwzzuxx
42
+ a=26 b=22 c=5 d=23 e=9 f=28 g=13 h=16 i=14 j=8 k=14 l=8 m=14 n=7 o=12 p=21 q=3 r=7 s=16 t=30 u=9 v=3 w=6 x=27 y=25 z=29 A=10
43
+ a=24 b=10 c=7 d=21 e=13 f=16 g=9 h=3 i=14 j=7 k=5 l=23 m=25 n=16 o=17 p=9 q=9 r=13 s=6 t=10 u=15 v=14 w=23 x=15 y=6 z=8 A=11 B=6 C=15 D=15 E=10 F=10
44
+ a=25 b=10 c=14 d=10 e=21 f=11 g=19 h=6 i=10 j=17 k=20 l=25 m=15 n=18 o=8 p=23 q=12 r=16 s=3 t=21 u=11 v=23 w=11 x=21 y=14 z=16 A=5
45
+ a=8 b=13 c=3 d=20 e=18 f=7 g=28 h=13 i=13 j=21 k=5 l=8 m=3 n=12 o=25 p=11 q=12 r=5 s=15 t=7 u=29 v=19 w=16 x=5 y=27 z=9 A=11 B=9 C=9 D=3 E=9 F=12
46
+ a=17 b=10 c=24 d=9 e=18 f=18 g=20 h=11 i=9 j=19 k=18 l=20 m=19 n=24 o=12 p=9 q=13 r=14 s=3 t=16 u=12 v=25 w=9 x=22 y=10 z=12 A=12
47
+ a=16 b=20 c=11 d=15 e=10 f=10 g=14 h=4 i=20 j=3 k=8 l=18 m=22 n=14 o=15 p=14 q=18 r=13 s=15 t=13 u=5 v=6 w=15 x=17 y=8 z=13 A=15 B=14 C=6 D=13 E=10 F=10
48
+ a=29 b=18 c=8 d=28 e=13 f=34 g=9 h=5 i=9 j=9 k=14 l=9 m=18 n=14 o=6 p=19 q=3 r=11 s=16 t=26 u=5 v=13 w=6 x=24 y=27 z=20 A=12
49
+ a=21 b=9 c=16 d=11 e=26 f=14 g=24 h=17 i=14 j=6 k=11 l=15 m=18 n=14 o=12 p=18 q=17 r=17 s=9 t=21 u=5 v=18 w=13 x=24 y=9 z=23 A=3
50
+ a=8 b=17 c=8 d=12 e=15 f=12 g=17 h=22 i=5 j=18 k=12 l=8 m=20 n=23 o=8 p=5 q=10 r=10 s=9 t=15 u=13 v=14 w=13 x=7 y=3 z=23 A=19 B=24 C=6 D=16 E=12 F=1
51
+ a=15 b=5 c=10 d=4 e=25 f=13 g=15 h=21 i=7 j=15 k=9 l=12 m=13 n=24 o=9 p=6 q=14 r=9 s=25 t=7 u=17 v=13 w=14 x=22 y=3 z=13 A=10 B=1 C=9 D=25 E=7 F=13
52
+ a=21 b=9 c=10 d=19 e=5 f=14 g=16 h=6 i=25 j=4 k=12 l=14 m=20 n=11 o=15 p=24 q=10 r=8 s=15 t=13 u=7 v=7 w=14 x=10 y=15 z=11 A=11 B=17 C=7 D=16 E=6 F=13
53
+ a=15 b=21 c=14 d=13 e=21 f=12 g=23 h=10 i=5 j=19 k=13 l=26 m=24 n=19 o=15 p=9 q=15 r=8 s=3 t=15 u=15 v=19 w=11 x=20 y=13 z=17 A=10
54
+ a=24 b=18 c=17 d=16 e=30 f=11 g=10 h=16 i=9 j=11 k=26 l=21 m=15 n=21 o=10 p=6 q=4 r=10 s=12 t=19 u=29 v=25 w=15 x=16 y=10 z=4
55
+ a=30 b=26 c=16 d=13 e=22 f=13 g=19 h=7 i=10 j=9 k=19 l=15 m=13 n=23 o=20 p=3 q=11 r=15 s=10 t=21 u=24 v=16 w=6 x=21 y=12 z=11
56
+ a=22 b=23 c=15 d=24 e=3 f=30 g=13 h=11 i=11 j=3 k=22 l=12 m=17 n=13 o=8 p=15 q=7 r=11 s=16 t=25 u=9 v=14 w=5 x=25 y=23 z=20 A=8
57
+ a=11 b=21 c=6 d=15 e=11 f=5 g=18 h=18 i=11 j=12 k=10 l=13 m=25 n=20 o=6 p=12 q=3 r=8 s=12 t=24 u=11 v=11 w=8 x=8 y=10 z=16 A=9 B=27 C=11 D=19 E=8 F=6
58
+ a=21 b=22 c=23 d=12 e=28 f=6 g=17 h=10 i=17 j=11 k=29 l=20 m=13 n=14 o=12 p=5 q=7 r=13 s=14 t=15 u=30 v=12 w=9 x=15 y=14 z=16
59
+ a=11 b=15 c=4 d=20 e=19 f=8 g=29 h=8 i=10 j=14 k=11 l=9 m=3 n=15 o=22 p=9 q=7 r=11 s=22 t=13 u=22 v=10 w=23 x=5 y=18 z=11 A=7 B=16 C=8 D=7 E=9 F=9
60
+ a=1 b=17 c=13 d=23 e=28 f=17 g=19 h=5 i=14 j=10 k=10 l=6 m=9 n=24 o=9 p=13 q=19 r=9 s=7 t=10 u=6 v=3 w=4 x=8 y=17 z=32 A=13 B=21 C=7 D=12 E=6 F=2 G=11
61
+ a=9 b=24 c=10 d=14 e=7 f=13 g=15 h=15 i=19 j=7 k=6 l=9 m=25 n=13 o=17 p=18 q=11 r=14 s=9 t=11 u=11 v=8 w=19 x=13 y=12 z=17 A=10 B=11 C=11 D=11 E=4 F=12
62
+ a=13 b=17 c=4 d=14 e=12 f=9 g=19 h=18 i=7 j=15 k=13 l=14 m=23 n=20 o=6 p=9 q=7 r=14 s=10 t=15 u=9 v=10 w=8 x=9 y=5 z=17 A=21 B=29 C=11 D=15 E=10 F=2
63
+ a=15 b=21 c=7 d=7 e=10 f=3 g=23 h=15 i=11 j=11 k=7 l=21 m=20 n=17 o=9 p=17 q=9 r=6 s=12 t=18 u=6 v=12 w=9 x=9 y=8 z=16 A=19 B=29 C=15 D=9 E=12 F=2
64
+ a=7 b=13 c=8 d=24 e=30 f=18 g=17 h=3 i=15 j=4 k=23 l=7 m=7 n=21 o=15 p=17 q=8 r=13 s=4 t=7 u=16 v=2 w=1 x=7 y=13 z=25 A=20 B=20 C=7 D=14 E=8 F=1 G=10
65
+ a=16 b=17 c=14 d=11 e=27 f=7 g=24 h=14 i=11 j=15 k=7 l=26 m=23 n=13 o=14 p=17 q=17 r=8 s=5 t=17 u=12 v=21 w=19 x=18 y=12 z=16 A=4
66
+ a=12 b=9 c=16 d=6 e=22 f=17 g=14 h=19 i=3 j=16 k=7 l=11 m=12 n=17 o=13 p=10 q=17 r=6 s=25 t=14 u=15 v=11 w=13 x=17 y=8 z=8 A=10 B=2 C=10 D=19 E=11 F=15
67
+ a=1 b=18 c=19 d=18 e=22 f=13 g=21 h=11 i=12 j=11 k=20 l=5 m=1 n=26 o=15 p=10 q=13 r=10 s=3 t=11 u=11 v=2 w=4 x=9 y=13 z=22 A=23 B=19 C=7 D=12 E=1 F=2 G=20
68
+ a=7 b=12 c=11 d=24 e=23 f=8 g=19 h=10 i=16 j=8 k=22 l=11 m=5 n=24 o=18 p=12 q=12 r=5 s=2 t=13 u=16 v=4 w=1 x=12 y=5 z=28 A=17 B=23 C=2 D=10 E=1 F=8 G=16
69
+ a=10 b=11 c=6 d=20 e=16 f=12 g=28 h=7 i=7 j=9 k=13 l=10 m=7 n=12 o=20 p=15 q=16 r=6 s=20 t=10 u=24 v=16 w=19 x=5 y=26 z=8 A=5 B=10 C=8 D=14 E=7 F=8
70
+ a=16 b=6 c=6 d=9 e=19 f=23 g=24 h=17 i=8 j=6 k=9 l=14 m=17 n=18 o=6 p=9 q=16 r=11 s=21 t=8 u=15 v=16 w=16 x=12 y=2 z=8 A=13 B=8 C=7 D=23 E=5 F=17
71
+ a=17 b=3 c=12 d=9 e=22 f=19 g=10 h=17 i=9 j=15 k=11 l=13 m=17 n=9 o=15 p=12 q=13 r=7 s=18 t=6 u=18 v=9 w=23 x=19 y=5 z=10 A=5 B=7 C=10 D=25 E=9 F=11
72
+ a=15 b=14 c=10 d=19 e=5 f=13 g=17 h=8 i=17 j=3 k=14 l=19 m=19 n=21 o=9 p=15 q=14 r=17 s=11 t=11 u=4 v=11 w=19 x=16 y=3 z=16 A=14 B=9 C=11 D=11 E=6 F=14
73
+ a=10 b=19 c=8 d=16 e=10 f=4 g=23 h=18 i=10 j=11 k=10 l=6 m=25 n=17 o=14 p=7 q=9 r=9 s=5 t=22 u=10 v=12 w=12 x=15 y=11 z=13 A=14 B=27 C=11 D=10 E=13 F=4
74
+ a=4 b=17 c=9 d=21 e=29 f=16 g=23 h=5 i=10 j=7 k=16 l=8 m=7 n=18 o=13 p=12 q=8 r=16 s=3 t=12 u=9 v=8 w=4 x=16 y=5 z=29 A=16 B=12 C=8 D=12 E=3 F=9 G=20
75
+ a=12 b=9 c=7 d=17 e=14 f=15 g=27 h=9 i=16 j=11 k=11 l=9 m=7 n=8 o=23 p=9 q=8 r=13 s=16 t=11 u=27 v=22 w=16 x=4 y=21 z=15 A=10 B=3 C=7 D=15 E=7 F=6
76
+ a=22 b=4 c=10 d=8 e=28 f=20 g=8 h=14 i=4 j=14 k=12 l=8 m=19 n=15 o=8 p=4 q=19 r=9 s=23 t=17 u=12 v=15 w=13 x=18 y=4 z=5 A=12 B=6 C=9 D=30 E=3 F=12
77
+ a=19 b=18 c=27 d=12 e=34 f=10 g=13 h=9 i=15 j=8 k=22 l=14 m=8 n=28 o=13 p=11 q=9 r=14 s=10 t=12 u=35 v=17 w=18 x=10 y=13 z=6
78
+ a=19 b=23 c=9 d=28 e=5 f=32 g=10 h=16 i=11 j=3 k=18 l=15 m=12 n=9 o=9 p=15 q=8 r=11 s=14 t=26 u=16 v=9 w=7 x=31 y=16 z=27 A=6
79
+ a=19 b=4 c=6 d=18 e=15 f=7 g=24 h=16 i=9 j=16 k=12 l=17 m=4 n=6 o=20 p=10 q=9 r=13 s=13 t=10 u=37 v=19 w=12 x=4 y=20 z=14 A=7 B=4 C=9 D=12 E=11 F=8
80
+ a=28 b=19 c=11 d=29 e=7 f=29 g=16 h=11 i=3 j=7 k=14 l=12 m=14 n=14 o=14 p=15 q=5 r=9 s=18 t=27 u=7 v=15 w=4 x=20 y=29 z=18 A=10
81
+ a=27 b=17 c=25 d=9 e=29 f=12 g=20 h=14 i=11 j=5 k=22 l=14 m=6 n=20 o=17 p=11 q=10 r=11 s=10 t=9 u=27 v=14 w=21 x=18 y=15 z=11
@@ -0,0 +1,9 @@
1
+ 2 6 8 1 3 5 7 9 4
2
+ 1 9 7 4 2 6 5 8 3
3
+ 4 5 3 7 9 8 1 6 2
4
+ 3 8 5 2 7 1 9 4 6
5
+ 9 1 6 5 8 4 2 3 7
6
+ 7 2 4 3 6 9 8 1 5
7
+ 8 7 2 6 1 3 4 5 9
8
+ 5 3 9 8 4 2 6 7 1
9
+ 6 4 1 9 5 7 3 2 8
@@ -0,0 +1,9 @@
1
+ 6 9 3 2 1 8 4 7 5
2
+ 7 2 8 4 3 5 6 1 9
3
+ 4 1 5 6 7 9 8 2 3
4
+ 1 3 9 8 2 7 5 4 6
5
+ 5 6 2 3 9 4 7 8 1
6
+ 8 7 4 1 5 6 9 3 2
7
+ 2 8 6 5 4 1 3 9 7
8
+ 9 4 1 7 6 3 2 5 8
9
+ 3 5 7 9 8 2 1 6 4
@@ -0,0 +1,9 @@
1
+ 8 11 16 4 5 10 11 9 16
2
+ 12 3 10 7 12 14 9 9 14
3
+ 14 10 6 14 7 17 4 10 8
4
+ 5 11 13 3 13 7 15 18 5
5
+ 4 12 6 12 13 14 5 12 12
6
+ 16 11 12 12 13 3 12 8 3
7
+ 6 5 14 13 11 11 15 10 5
8
+ 12 12 4 12 9 10 11 4 16
9
+ 13 15 9 13 7 4 8 10 11
@@ -0,0 +1,9 @@
1
+ 36 29 41 36 24 34 55 43 62
2
+ 36 43 43 35 44 45 24 56 34
3
+ 45 38 49 42 54 46 20 27 39
4
+ 21 40 36 34 48 46 59 38 38
5
+ 29 41 53 40 38 46 51 26 36
6
+ 49 46 45 26 35 47 51 36 25
7
+ 52 41 26 55 37 36 34 40 39
8
+ 43 41 35 49 45 29 32 42 44
9
+ 49 41 32 43 35 31 34 52 43
@@ -0,0 +1,9 @@
1
+ 65 89 73 68 38 77 104 98 108
2
+ 74 86 82 57 88 99 68 68 98
3
+ 75 91 85 83 98 112 47 60 69
4
+ 37 73 84 64 79 77 118 99 89
5
+ 80 68 119 72 94 77 82 78 50
6
+ 74 87 98 92 80 85 89 72 43
7
+ 94 81 55 106 89 77 72 66 80
8
+ 120 65 56 98 71 53 75 90 92
9
+ 101 80 68 80 83 63 65 89 91
@@ -0,0 +1,9 @@
1
+ 126 184 176 96 114 153 174 198 219
2
+ 149 141 144 104 198 191 135 186 192
3
+ 156 173 191 162 200 222 71 129 136
4
+ 79 126 161 175 172 157 216 197 157
5
+ 147 173 210 175 164 145 164 143 119
6
+ 180 197 167 122 163 167 164 126 154
7
+ 187 119 119 223 126 171 202 158 135
8
+ 216 189 120 179 137 125 163 138 173
9
+ 200 138 152 204 166 109 151 165 155
@@ -0,0 +1,9 @@
1
+ 213 193 197 160 121 151 216 256 293
2
+ 190 170 206 150 217 278 147 220 222
3
+ 208 237 186 203 247 273 109 141 196
4
+ 88 194 222 230 201 181 275 218 191
5
+ 157 219 255 184 210 178 235 191 171
6
+ 188 233 244 213 224 179 246 150 123
7
+ 236 153 133 244 233 199 209 191 202
8
+ 254 173 171 191 173 183 209 224 222
9
+ 266 228 186 225 174 178 154 209 180
@@ -0,0 +1,8 @@
1
+ var inputs = readline().split(' ');
2
+ const X = parseInt(inputs[0]);
3
+ const Y = parseInt(inputs[1]);
4
+ const A = parseInt(inputs[2]);
5
+ const N = parseInt(readline());
6
+ for (let i = 0; i < N; i++) {
7
+ const ROW = readline();
8
+ }
@@ -0,0 +1,7 @@
1
+ <?php
2
+ fscanf(STDIN, "%d %d %d", $X, $Y, $A);
3
+ fscanf(STDIN, "%d", $N);
4
+ for ($i = 0; $i < $N; $i++)
5
+ {
6
+ $ROW = stream_get_line(STDIN, $N + 1, "\n");
7
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "path": "hard/LetsMakeACheapASCII3DEngine",
3
+ "name": "Let’s make a cheap ASCII 3D engine!",
4
+ "alphanumName": "LetsMakeACheapASCII3DEngine",
5
+ "link": "https://www.codingame.com/ide/puzzle/lets-make-a-cheap-ascii-3d-engine",
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
+ }
@@ -0,0 +1,9 @@
1
+ 150 550 0
2
+ 7
3
+ #######
4
+ #..#..#
5
+ #..#.##
6
+ #.....#
7
+ #...###
8
+ #.....#
9
+ #######
@@ -0,0 +1,22 @@
1
+ 1435 1255 -100
2
+ 20
3
+ ####################
4
+ #......#.....#..#..#
5
+ #......#.....#..#.##
6
+ #......#...........#
7
+ ###..###.........###
8
+ #..................#
9
+ #..................#
10
+ #......#...........#
11
+ #......#.....#######
12
+ #............#.....#
13
+ #............#.###.#
14
+ #............#.#####
15
+ #............#.....#
16
+ #............#####.#
17
+ #..................#
18
+ #............#.....#
19
+ #............###...#
20
+ #............#.....#
21
+ #..................#
22
+ ####################
@@ -0,0 +1,22 @@
1
+ 1850 1750 180
2
+ 20
3
+ ####################
4
+ #......#.....#..#..#
5
+ #......#.....#..#.##
6
+ #......#...........#
7
+ ###..###.........###
8
+ #..................#
9
+ #..................#
10
+ #......#...........#
11
+ #......#.....#######
12
+ #............#.....#
13
+ #............#.###.#
14
+ #............#.#####
15
+ #............#.....#
16
+ #............#####.#
17
+ #..................#
18
+ #............#.....#
19
+ #............###...#
20
+ #............#.....#
21
+ #..................#
22
+ ####################
@@ -0,0 +1,22 @@
1
+ 1635 1440 175
2
+ 20
3
+ ####################
4
+ #......#.....#..#..#
5
+ #......#.....#..#.##
6
+ #......#...........#
7
+ ###..###.........###
8
+ #..................#
9
+ #..................#
10
+ #......#...........#
11
+ #......#.....#######
12
+ #............#.....#
13
+ #............#.###.#
14
+ #............#.#####
15
+ #............#.....#
16
+ #............#####.#
17
+ #..................#
18
+ #............#.....#
19
+ #............###...#
20
+ #............#.....#
21
+ #..................#
22
+ ####################
@@ -0,0 +1,15 @@
1
+ ..................
2
+ ,,,,,,,,,,,,,,,,,,,. ....................
3
+ ,,,,,,,,,,,,,,,,,,,... ......................
4
+ ,,,,,,,,,,,,,,,,,,,..... ........................
5
+ ,,,,,,,,,,,,,,,,,,,.....,,,,,,,,,,,,,........................
6
+ ,,,,,,,,,,,,,,,,,,,.....,,,,,,,,,,,,,........................
7
+ ,,,,,,,,,,,,,,,,,,,.....,,,,,,,,,,,,,........................
8
+ ,,,,,,,,,,,,,,,,,,,.....,,,,,,,,,,,,,........................
9
+ ,,,,,,,,,,,,,,,,,,,.....,,,,,,,,,,,,,........................
10
+ ,,,,,,,,,,,,,,,,,,,.....,,,,,,,,,,,,,........................
11
+ ,,,,,,,,,,,,,,,,,,,.....,,,,,,,,,,,,,........................
12
+ ,,,,,,,,,,,,,,,,,,,..... ........................
13
+ ,,,,,,,,,,,,,,,,,,,... ......................
14
+ ,,,,,,,,,,,,,,,,,,,. ....................
15
+ ..................
@@ -0,0 +1,15 @@
1
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,
2
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,
3
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,
4
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,....................,,,,,,
5
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,....................,,,,,,
6
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,....................,,,,,,
7
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,....................,,,,,,
8
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,....................,,,,,,
9
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,....................,,,,,,
10
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,....................,,,,,,
11
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,....................,,,,,,
12
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,....................,,,,,,
13
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,
14
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,
15
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,
@@ -0,0 +1,15 @@
1
+
2
+ .. .,,,,,,,,,,,,,,,,,,,
3
+ ...... ...,,,,,,,,,,,,,,,,,,,
4
+ ........... .....,,,,,,,,,,,,,,,,,,,
5
+ ................ ,,,,,,,,,,,,,.....,,,,,,,,,,,,,,,,,,,
6
+ ...................... ,,,,,,,,,,,,,.....,,,,,,,,,,,,,,,,,,,
7
+ ........................,,,,,,,,,,,,,.....,,,,,,,,,,,,,,,,,,,
8
+ ........................,,,,,,,,,,,,,.....,,,,,,,,,,,,,,,,,,,
9
+ ........................,,,,,,,,,,,,,.....,,,,,,,,,,,,,,,,,,,
10
+ ...................... ,,,,,,,,,,,,,.....,,,,,,,,,,,,,,,,,,,
11
+ ................ ,,,,,,,,,,,,,.....,,,,,,,,,,,,,,,,,,,
12
+ ........... .....,,,,,,,,,,,,,,,,,,,
13
+ ...... ...,,,,,,,,,,,,,,,,,,,
14
+ .. .,,,,,,,,,,,,,,,,,,,
15
+
@@ -0,0 +1,15 @@
1
+ ................
2
+ .,,,,,,,,,,,,,,,,,,,,.. .................
3
+ .,,,,,,,,,,,,,,,,,,,,.... ...................
4
+ .,,,,,,,,,,,,,,,,,,,,.... ...................
5
+ .,,,,,,,,,,,,,,,,,,,,.... ...................
6
+ .,,,,,,,,,,,,,,,,,,,,.... ...................
7
+ .,,,,,,,,,,,,,,,,,,,,....,,,,,,,,,,,,,,,,,...................
8
+ .,,,,,,,,,,,,,,,,,,,,....,,,,,,,,,,,,,,,,,...................
9
+ .,,,,,,,,,,,,,,,,,,,,....,,,,,,,,,,,,,,,,,...................
10
+ .,,,,,,,,,,,,,,,,,,,,.... ...................
11
+ .,,,,,,,,,,,,,,,,,,,,.... ...................
12
+ .,,,,,,,,,,,,,,,,,,,,.... ...................
13
+ .,,,,,,,,,,,,,,,,,,,,.... ...................
14
+ .,,,,,,,,,,,,,,,,,,,,.. .................
15
+ ................
@@ -0,0 +1,9 @@
1
+ const ins = readline();
2
+ for (let i = 0; i < 7; i++) {
3
+ const line = readline();
4
+ }
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('instructions');
@@ -0,0 +1,11 @@
1
+ <?php
2
+ $ins = stream_get_line(STDIN, 20 + 1, "\n");
3
+ for ($i = 0; $i < 7; $i++)
4
+ {
5
+ fscanf(STDIN, "%s", $line);
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("instructions\n");
@@ -0,0 +1,73 @@
1
+ {
2
+ "path": "hard/MARIAndTheCrazyFactory",
3
+ "name": "M.A.R.I. and the crazy factory",
4
+ "alphanumName": "MARIAndTheCrazyFactory",
5
+ "link": "https://www.codingame.com/ide/puzzle/m-a-r-i--and-the-crazy-factory",
6
+ "tests": [
7
+ {
8
+ "name": "Go straight ahead… or maybe not",
9
+ "alphanumName": "GoStraightAheadOrMaybeNot",
10
+ "file": "01 - Go straight ahead… or maybe not.txt"
11
+ },
12
+ {
13
+ "name": "Straight ahead and nop",
14
+ "alphanumName": "StraightAheadAndNop",
15
+ "file": "02 - Straight ahead and nop.txt"
16
+ },
17
+ {
18
+ "name": "Turn right",
19
+ "alphanumName": "TurnRight",
20
+ "file": "03 - Turn right.txt"
21
+ },
22
+ {
23
+ "name": "A bit harder",
24
+ "alphanumName": "ABitHarder",
25
+ "file": "04 - A bit harder.txt"
26
+ },
27
+ {
28
+ "name": "With break",
29
+ "alphanumName": "WithBreak",
30
+ "file": "05 - With break.txt"
31
+ },
32
+ {
33
+ "name": "Starts with a not empty set",
34
+ "alphanumName": "StartsWithANotEmptySet",
35
+ "file": "06 - Starts with a not empty set.txt"
36
+ },
37
+ {
38
+ "name": "Repeat next instruction",
39
+ "alphanumName": "RepeatNextInstruction",
40
+ "file": "07 - Repeat next instruction.txt"
41
+ },
42
+ {
43
+ "name": "Random puzzle",
44
+ "alphanumName": "RandomPuzzle",
45
+ "file": "08 - Random puzzle.txt"
46
+ },
47
+ {
48
+ "name": "Someone lost a piece",
49
+ "alphanumName": "SomeoneLostAPiece",
50
+ "file": "09 - Someone lost a piece.txt"
51
+ },
52
+ {
53
+ "name": "A key on the ground",
54
+ "alphanumName": "AKeyOnTheGround",
55
+ "file": "10 - A key on the ground.txt"
56
+ },
57
+ {
58
+ "name": "Open the door tyrannosaur",
59
+ "alphanumName": "OpenTheDoorTyrannosaur",
60
+ "file": "11 - Open the door tyrannosaur.txt"
61
+ },
62
+ {
63
+ "name": "Drunken M.A.R.I.",
64
+ "alphanumName": "DrunkenMARI",
65
+ "file": "12 - Drunken M.A.R.I..txt"
66
+ },
67
+ {
68
+ "name": "To the central command",
69
+ "alphanumName": "ToTheCentralCommand",
70
+ "file": "13 - To the central command.txt"
71
+ }
72
+ ]
73
+ }
@@ -0,0 +1,8 @@
1
+ p1 tr p2
2
+ ####2
3
+ ####.
4
+ ####.
5
+ ####.
6
+ ####.
7
+ ####.
8
+ ##E..
@@ -0,0 +1,8 @@
1
+ p1 p1 nop
2
+ #####
3
+ ##.##
4
+ ##E##
5
+ ##.##
6
+ ##.##
7
+ ##.##
8
+ ##0##
@@ -0,0 +1,8 @@
1
+ p1 p2 nop tr
2
+ #####
3
+ ....#
4
+ ..E##
5
+ ..#2#
6
+ ....#
7
+ ....#
8
+ #####
@@ -0,0 +1,8 @@
1
+ tr tl p1 p1 p2
2
+ #####
3
+ ##...
4
+ ##.#.
5
+ ##.#E
6
+ ##0#.
7
+ ##.#.
8
+ #####
@@ -0,0 +1,8 @@
1
+ tr p1 p1 p2 bk
2
+ #####
3
+ ##E##
4
+ ##.##
5
+ #...#
6
+ #...#
7
+ #0#.#
8
+ #####
@@ -0,0 +1,8 @@
1
+ p2 tl tr p1
2
+ #####
3
+ #1..#
4
+ ###.#
5
+ ###.#
6
+ ##..#
7
+ ##.##
8
+ ##E##
@@ -0,0 +1,8 @@
1
+ tl p1 p1 x2
2
+ #####
3
+ E.###
4
+ #.###
5
+ #.3##
6
+ #.###
7
+ #####
8
+ #####
@@ -0,0 +1,8 @@
1
+ tr tl x2 p1 p1
2
+ #####
3
+ #####
4
+ ###E.
5
+ ####.
6
+ #.##.
7
+ #...3
8
+ #####