@cyrilverloop/codingame-configuration 1.2.1 → 1.4.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 +73 -0
  2. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/code/CGCode.js +6 -0
  3. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/code/CGCode.php +7 -0
  4. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/config.json +33 -0
  5. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/input/01 - test 1.txt +1 -0
  6. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/input/02 - test 2.txt +1 -0
  7. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/input/03 - test 3.txt +1 -0
  8. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/input/04 - test 4.txt +1 -0
  9. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/input/05 - test 5.txt +1 -0
  10. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/output/01 - test 1.txt +11 -0
  11. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/output/02 - test 2.txt +11 -0
  12. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/output/03 - test 3.txt +11 -0
  13. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/output/04 - test 4.txt +11 -0
  14. package/config/easy/ASCIIArtTheDrunkenBishopAlgorithm/output/05 - test 5.txt +11 -0
  15. package/config/easy/Abcdefghijklmnopqrstuvwxyz/code/CGCode.js +9 -0
  16. package/config/easy/Abcdefghijklmnopqrstuvwxyz/code/CGCode.php +11 -0
  17. package/config/easy/Abcdefghijklmnopqrstuvwxyz/config.json +33 -0
  18. package/config/easy/Abcdefghijklmnopqrstuvwxyz/input/01 - test 1.txt +11 -0
  19. package/config/easy/Abcdefghijklmnopqrstuvwxyz/input/02 - test 2.txt +16 -0
  20. package/config/easy/Abcdefghijklmnopqrstuvwxyz/input/03 - test 3.txt +16 -0
  21. package/config/easy/Abcdefghijklmnopqrstuvwxyz/input/04 - test 4.txt +21 -0
  22. package/config/easy/Abcdefghijklmnopqrstuvwxyz/input/05 - test 5.txt +31 -0
  23. package/config/easy/Abcdefghijklmnopqrstuvwxyz/output/01 - test 1.txt +10 -0
  24. package/config/easy/Abcdefghijklmnopqrstuvwxyz/output/02 - test 2.txt +15 -0
  25. package/config/easy/Abcdefghijklmnopqrstuvwxyz/output/03 - test 3.txt +15 -0
  26. package/config/easy/Abcdefghijklmnopqrstuvwxyz/output/04 - test 4.txt +20 -0
  27. package/config/easy/Abcdefghijklmnopqrstuvwxyz/output/05 - test 5.txt +30 -0
  28. package/config/easy/AnagramToBreakTheCode/code/CGCode.js +7 -0
  29. package/config/easy/AnagramToBreakTheCode/code/CGCode.php +8 -0
  30. package/config/easy/AnagramToBreakTheCode/config.json +58 -0
  31. package/config/easy/AnagramToBreakTheCode/input/01 - Sample.txt +2 -0
  32. package/config/easy/AnagramToBreakTheCode/input/02 - 5 letters + punctuation mark.txt +2 -0
  33. package/config/easy/AnagramToBreakTheCode/input/03 - 4 letters + punctuation mark.txt +2 -0
  34. package/config/easy/AnagramToBreakTheCode/input/04 - 7 letters + duplicate anagram.txt +2 -0
  35. package/config/easy/AnagramToBreakTheCode/input/05 - impossible.txt +2 -0
  36. package/config/easy/AnagramToBreakTheCode/input/06 - 8 letters + case sensitives anagram.txt +2 -0
  37. package/config/easy/AnagramToBreakTheCode/input/07 - 9 letters + the key + 1 anagram in same sentence.txt +2 -0
  38. package/config/easy/AnagramToBreakTheCode/input/08 - random words no sense.txt +2 -0
  39. package/config/easy/AnagramToBreakTheCode/input/09 - no word before anagram.txt +2 -0
  40. package/config/easy/AnagramToBreakTheCode/input/10 - no word after key.txt +2 -0
  41. package/config/easy/AnagramToBreakTheCode/output/01 - Sample.txt +1 -0
  42. package/config/easy/AnagramToBreakTheCode/output/02 - 5 letters + punctuation mark.txt +1 -0
  43. package/config/easy/AnagramToBreakTheCode/output/03 - 4 letters + punctuation mark.txt +1 -0
  44. package/config/easy/AnagramToBreakTheCode/output/04 - 7 letters + duplicate anagram.txt +1 -0
  45. package/config/easy/AnagramToBreakTheCode/output/05 - impossible.txt +1 -0
  46. package/config/easy/AnagramToBreakTheCode/output/06 - 8 letters + case sensitives anagram.txt +1 -0
  47. package/config/easy/AnagramToBreakTheCode/output/07 - 9 letters + the key + 1 anagram in same sentence.txt +1 -0
  48. package/config/easy/AnagramToBreakTheCode/output/08 - random words no sense.txt +1 -0
  49. package/config/easy/AnagramToBreakTheCode/output/09 - no word before anagram.txt +1 -0
  50. package/config/easy/AnagramToBreakTheCode/output/10 - no word after key.txt +1 -0
  51. package/config/easy/AnotherRoadConstructionSite1/code/CGCode.js +14 -0
  52. package/config/easy/AnotherRoadConstructionSite1/code/CGCode.php +18 -0
  53. package/config/easy/AnotherRoadConstructionSite1/config.json +28 -0
  54. package/config/easy/AnotherRoadConstructionSite1/input/01 - Little annoyance.txt +3 -0
  55. package/config/easy/AnotherRoadConstructionSite1/input/02 - Like stopping for a coffee.txt +5 -0
  56. package/config/easy/AnotherRoadConstructionSite1/input/03 - Cote d/342/200/230Azur.txt" +27 -0
  57. package/config/easy/AnotherRoadConstructionSite1/input/04 - Genova - Roma.txt +24 -0
  58. package/config/easy/AnotherRoadConstructionSite1/output/03 - Cote d/342/200/230Azur.txt" +1 -0
  59. package/config/easy/AnotherRoadConstructionSite1/output/04 - Genova - Roma.txt +1 -0
  60. package/config/easy/BattleOfHeroes/code/CGCode.js +7 -0
  61. package/config/easy/BattleOfHeroes/code/CGCode.php +8 -0
  62. package/config/easy/BattleOfHeroes/config.json +33 -0
  63. package/config/easy/BattleOfHeroes/input/01 - Minotaur vs. Unicorn.txt +2 -0
  64. package/config/easy/BattleOfHeroes/input/02 - Flawless victory!.txt +2 -0
  65. package/config/easy/BattleOfHeroes/input/03 - Range battle.txt +2 -0
  66. package/config/easy/BattleOfHeroes/input/04 - Rebel scum.txt +2 -0
  67. package/config/easy/BattleOfHeroes/input/05 - Deadly strike-back.txt +2 -0
  68. package/config/easy/BattleOfHeroes/output/01 - Minotaur vs. Unicorn.txt +33 -0
  69. package/config/easy/BattleOfHeroes/output/02 - Flawless victory!.txt +5 -0
  70. package/config/easy/BattleOfHeroes/output/03 - Range battle.txt +36 -0
  71. package/config/easy/BattleOfHeroes/output/04 - Rebel scum.txt +29 -0
  72. package/config/easy/BattleOfHeroes/output/05 - Deadly strike-back.txt +8 -0
  73. package/config/easy/BlackjackSolver/code/CGCode.js +7 -0
  74. package/config/easy/BlackjackSolver/code/CGCode.php +8 -0
  75. package/config/easy/BlackjackSolver/config.json +58 -0
  76. package/config/easy/BlackjackSolver/input/01 - No 10 cards.txt +2 -0
  77. package/config/easy/BlackjackSolver/input/02 - With 10 cards.txt +2 -0
  78. package/config/easy/BlackjackSolver/input/03 - Draw.txt +2 -0
  79. package/config/easy/BlackjackSolver/input/04 - With Ace.txt +2 -0
  80. package/config/easy/BlackjackSolver/input/05 - Too much.txt +2 -0
  81. package/config/easy/BlackjackSolver/input/06 - Not too much with Ace.txt +2 -0
  82. package/config/easy/BlackjackSolver/input/07 - Blackjack!.txt +2 -0
  83. package/config/easy/BlackjackSolver/input/08 - Blackjack draw.txt +2 -0
  84. package/config/easy/BlackjackSolver/input/09 - Multiple Aces.txt +2 -0
  85. package/config/easy/BlackjackSolver/input/10 - Both too much.txt +2 -0
  86. package/config/easy/BlackjackSolver/output/01 - No 10 cards.txt +1 -0
  87. package/config/easy/BlackjackSolver/output/02 - With 10 cards.txt +1 -0
  88. package/config/easy/BlackjackSolver/output/03 - Draw.txt +1 -0
  89. package/config/easy/BlackjackSolver/output/04 - With Ace.txt +1 -0
  90. package/config/easy/BlackjackSolver/output/05 - Too much.txt +1 -0
  91. package/config/easy/BlackjackSolver/output/06 - Not too much with Ace.txt +1 -0
  92. package/config/easy/BlackjackSolver/output/07 - Blackjack!.txt +1 -0
  93. package/config/easy/BlackjackSolver/output/08 - Blackjack draw.txt +1 -0
  94. package/config/easy/BlackjackSolver/output/09 - Multiple Aces.txt +1 -0
  95. package/config/easy/BlackjackSolver/output/10 - Both too much.txt +1 -0
  96. package/config/easy/BuildABookcase/code/CGCode.js +8 -0
  97. package/config/easy/BuildABookcase/code/CGCode.php +9 -0
  98. package/config/easy/BuildABookcase/config.json +43 -0
  99. package/config/easy/BuildABookcase/input/01 - test 1.txt +3 -0
  100. package/config/easy/BuildABookcase/input/02 - test 2.txt +3 -0
  101. package/config/easy/BuildABookcase/input/03 - test 3.txt +3 -0
  102. package/config/easy/BuildABookcase/input/04 - test 4.txt +3 -0
  103. package/config/easy/BuildABookcase/input/05 - test 5.txt +3 -0
  104. package/config/easy/BuildABookcase/input/06 - test 6.txt +3 -0
  105. package/config/easy/BuildABookcase/input/07 - test 7.txt +3 -0
  106. package/config/easy/BuildABookcase/output/01 - test 1.txt +8 -0
  107. package/config/easy/BuildABookcase/output/02 - test 2.txt +11 -0
  108. package/config/easy/BuildABookcase/output/03 - test 3.txt +10 -0
  109. package/config/easy/BuildABookcase/output/04 - test 4.txt +31 -0
  110. package/config/easy/BuildABookcase/output/05 - test 5.txt +100 -0
  111. package/config/easy/BuildABookcase/output/06 - test 6.txt +30 -0
  112. package/config/easy/BuildABookcase/output/07 - test 7.txt +3 -0
  113. package/config/easy/CardCountingwhenEasilyDistracted/code/CGCode.js +7 -0
  114. package/config/easy/CardCountingwhenEasilyDistracted/code/CGCode.php +8 -0
  115. package/config/easy/CardCountingwhenEasilyDistracted/config.json +133 -0
  116. package/config/easy/CardCountingwhenEasilyDistracted/input/01 - test 1.txt +2 -0
  117. package/config/easy/CardCountingwhenEasilyDistracted/input/02 - test 2.txt +2 -0
  118. package/config/easy/CardCountingwhenEasilyDistracted/input/03 - test 3.txt +2 -0
  119. package/config/easy/CardCountingwhenEasilyDistracted/input/04 - test 4.txt +2 -0
  120. package/config/easy/CardCountingwhenEasilyDistracted/input/05 - test 5.txt +2 -0
  121. package/config/easy/CardCountingwhenEasilyDistracted/input/06 - test 6.txt +2 -0
  122. package/config/easy/CardCountingwhenEasilyDistracted/input/07 - test 7.txt +2 -0
  123. package/config/easy/CardCountingwhenEasilyDistracted/input/08 - test 8.txt +2 -0
  124. package/config/easy/CardCountingwhenEasilyDistracted/input/09 - test 9.txt +2 -0
  125. package/config/easy/CardCountingwhenEasilyDistracted/input/10 - test 10.txt +2 -0
  126. package/config/easy/CardCountingwhenEasilyDistracted/input/11 - test 11.txt +2 -0
  127. package/config/easy/CardCountingwhenEasilyDistracted/input/12 - test 12.txt +2 -0
  128. package/config/easy/CardCountingwhenEasilyDistracted/input/13 - test 13 Not a chance.txt +2 -0
  129. package/config/easy/CardCountingwhenEasilyDistracted/input/14 - test 14.txt +2 -0
  130. package/config/easy/CardCountingwhenEasilyDistracted/input/15 - test 15.txt +2 -0
  131. package/config/easy/CardCountingwhenEasilyDistracted/input/16 - test 16 For sure.txt +2 -0
  132. package/config/easy/CardCountingwhenEasilyDistracted/input/17 - test 17.txt +2 -0
  133. package/config/easy/CardCountingwhenEasilyDistracted/input/18 - test 18.txt +2 -0
  134. package/config/easy/CardCountingwhenEasilyDistracted/input/19 - test 19.txt +2 -0
  135. package/config/easy/CardCountingwhenEasilyDistracted/input/20 - test 20 Anything but 10.txt +2 -0
  136. package/config/easy/CardCountingwhenEasilyDistracted/input/21 - test 21.txt +2 -0
  137. package/config/easy/CardCountingwhenEasilyDistracted/input/22 - test 22.txt +2 -0
  138. package/config/easy/CardCountingwhenEasilyDistracted/input/23 - test 23.txt +2 -0
  139. package/config/easy/CardCountingwhenEasilyDistracted/input/24 - test 24.txt +2 -0
  140. package/config/easy/CardCountingwhenEasilyDistracted/input/25 - test 25.txt +2 -0
  141. package/config/easy/CardCountingwhenEasilyDistracted/output/01 - test 1.txt +1 -0
  142. package/config/easy/CardCountingwhenEasilyDistracted/output/02 - test 2.txt +1 -0
  143. package/config/easy/CardCountingwhenEasilyDistracted/output/03 - test 3.txt +1 -0
  144. package/config/easy/CardCountingwhenEasilyDistracted/output/04 - test 4.txt +1 -0
  145. package/config/easy/CardCountingwhenEasilyDistracted/output/05 - test 5.txt +1 -0
  146. package/config/easy/CardCountingwhenEasilyDistracted/output/06 - test 6.txt +1 -0
  147. package/config/easy/CardCountingwhenEasilyDistracted/output/07 - test 7.txt +1 -0
  148. package/config/easy/CardCountingwhenEasilyDistracted/output/08 - test 8.txt +1 -0
  149. package/config/easy/CardCountingwhenEasilyDistracted/output/09 - test 9.txt +1 -0
  150. package/config/easy/CardCountingwhenEasilyDistracted/output/10 - test 10.txt +1 -0
  151. package/config/easy/CardCountingwhenEasilyDistracted/output/11 - test 11.txt +1 -0
  152. package/config/easy/CardCountingwhenEasilyDistracted/output/12 - test 12.txt +1 -0
  153. package/config/easy/CardCountingwhenEasilyDistracted/output/13 - test 13 Not a chance.txt +1 -0
  154. package/config/easy/CardCountingwhenEasilyDistracted/output/14 - test 14.txt +1 -0
  155. package/config/easy/CardCountingwhenEasilyDistracted/output/15 - test 15.txt +1 -0
  156. package/config/easy/CardCountingwhenEasilyDistracted/output/16 - test 16 For sure.txt +1 -0
  157. package/config/easy/CardCountingwhenEasilyDistracted/output/17 - test 17.txt +1 -0
  158. package/config/easy/CardCountingwhenEasilyDistracted/output/18 - test 18.txt +1 -0
  159. package/config/easy/CardCountingwhenEasilyDistracted/output/19 - test 19.txt +1 -0
  160. package/config/easy/CardCountingwhenEasilyDistracted/output/20 - test 20 Anything but 10.txt +1 -0
  161. package/config/easy/CardCountingwhenEasilyDistracted/output/21 - test 21.txt +1 -0
  162. package/config/easy/CardCountingwhenEasilyDistracted/output/22 - test 22.txt +1 -0
  163. package/config/easy/CardCountingwhenEasilyDistracted/output/23 - test 23.txt +1 -0
  164. package/config/easy/CardCountingwhenEasilyDistracted/output/24 - test 24.txt +1 -0
  165. package/config/easy/CardCountingwhenEasilyDistracted/output/25 - test 25.txt +1 -0
  166. package/config/easy/CheapChoices/code/CGCode.js +13 -0
  167. package/config/easy/CheapChoices/code/CGCode.php +16 -0
  168. package/config/easy/CheapChoices/config.json +43 -0
  169. package/config/easy/CheapChoices/input/01 - Simple Case.txt +7 -0
  170. package/config/easy/CheapChoices/input/02 - More People.txt +12 -0
  171. package/config/easy/CheapChoices/input/03 - No Items.txt +6 -0
  172. package/config/easy/CheapChoices/input/04 - Same Order.txt +12 -0
  173. package/config/easy/CheapChoices/input/05 - More Items.txt +13 -0
  174. package/config/easy/CheapChoices/input/06 - Sold Out.txt +21 -0
  175. package/config/easy/CheapChoices/input/07 - Busy Day.txt +29 -0
  176. package/config/easy/CheapChoices/output/01 - Simple Case.txt +2 -0
  177. package/config/easy/CheapChoices/output/02 - More People.txt +6 -0
  178. package/config/easy/CheapChoices/output/03 - No Items.txt +4 -0
  179. package/config/easy/CheapChoices/output/04 - Same Order.txt +6 -0
  180. package/config/easy/CheapChoices/output/05 - More Items.txt +4 -0
  181. package/config/easy/CheapChoices/output/06 - Sold Out.txt +11 -0
  182. package/config/easy/CheapChoices/output/07 - Busy Day.txt +15 -0
  183. package/config/easy/Codongame/code/CGCode.js +76 -0
  184. package/config/easy/Codongame/code/CGCode.php +78 -0
  185. package/config/easy/Codongame/config.json +58 -0
  186. package/config/easy/Codongame/input/01 - Example.txt +7 -0
  187. package/config/easy/Codongame/input/02 - Endings.txt +4 -0
  188. package/config/easy/Codongame/input/03 - Small.txt +13 -0
  189. package/config/easy/Codongame/input/04 - Correct length.txt +11 -0
  190. package/config/easy/Codongame/input/05 - Hidden messages.txt +7 -0
  191. package/config/easy/Codongame/input/06 - Alien rna.txt +12 -0
  192. package/config/easy/Codongame/input/07 - Lots of noise.txt +6 -0
  193. package/config/easy/Codongame/input/08 - Random 1.txt +11 -0
  194. package/config/easy/Codongame/input/09 - Random 2.txt +6 -0
  195. package/config/easy/Codongame/input/10 - ShakespeareanRag.txt +7 -0
  196. package/config/easy/Codongame/output/01 - Example.txt +6 -0
  197. package/config/easy/Codongame/output/02 - Endings.txt +3 -0
  198. package/config/easy/Codongame/output/03 - Small.txt +12 -0
  199. package/config/easy/Codongame/output/04 - Correct length.txt +10 -0
  200. package/config/easy/Codongame/output/05 - Hidden messages.txt +6 -0
  201. package/config/easy/Codongame/output/06 - Alien rna.txt +11 -0
  202. package/config/easy/Codongame/output/07 - Lots of noise.txt +5 -0
  203. package/config/easy/Codongame/output/08 - Random 1.txt +10 -0
  204. package/config/easy/Codongame/output/09 - Random 2.txt +5 -0
  205. package/config/easy/Codongame/output/10 - ShakespeareanRag.txt +6 -0
  206. package/config/easy/CountYourCoins/code/CGCode.js +15 -0
  207. package/config/easy/CountYourCoins/code/CGCode.php +18 -0
  208. package/config/easy/CountYourCoins/config.json +43 -0
  209. package/config/easy/CountYourCoins/input/01 - Easy !.txt +4 -0
  210. package/config/easy/CountYourCoins/input/02 - It/342/200/231s obviously way too much !.txt" +4 -0
  211. package/config/easy/CountYourCoins/input/03 - It/342/200/231s way too much.. But less obvious.txt" +4 -0
  212. package/config/easy/CountYourCoins/input/04 - Two coin types.txt +4 -0
  213. package/config/easy/CountYourCoins/input/05 - That/342/200/231s hard to evaluate....txt" +4 -0
  214. package/config/easy/CountYourCoins/input/06 - Why do I have so many different coins.txt +4 -0
  215. package/config/easy/CountYourCoins/input/07 - How does this even fit in my pocket.txt +4 -0
  216. package/config/easy/CountYourCoins/output/01 - Easy !.txt +1 -0
  217. package/config/easy/CountYourCoins/output/02 - It/342/200/231s obviously way too much !.txt" +1 -0
  218. package/config/easy/CountYourCoins/output/03 - It/342/200/231s way too much.. But less obvious.txt" +1 -0
  219. package/config/easy/CountYourCoins/output/04 - Two coin types.txt +1 -0
  220. package/config/easy/CountYourCoins/output/05 - That/342/200/231s hard to evaluate....txt" +1 -0
  221. package/config/easy/CountYourCoins/output/06 - Why do I have so many different coins.txt +1 -0
  222. package/config/easy/CountYourCoins/output/07 - How does this even fit in my pocket.txt +1 -0
  223. package/config/easy/CreateTurnHereSigns/code/CGCode.js +6 -0
  224. package/config/easy/CreateTurnHereSigns/code/CGCode.php +7 -0
  225. package/config/easy/CreateTurnHereSigns/config.json +73 -0
  226. package/config/easy/CreateTurnHereSigns/input/01 - test 1.txt +1 -0
  227. package/config/easy/CreateTurnHereSigns/input/02 - test 2.txt +1 -0
  228. package/config/easy/CreateTurnHereSigns/input/03 - test 3.txt +1 -0
  229. package/config/easy/CreateTurnHereSigns/input/04 - test 4.txt +1 -0
  230. package/config/easy/CreateTurnHereSigns/input/05 - test 5.txt +1 -0
  231. package/config/easy/CreateTurnHereSigns/input/06 - test 6.txt +1 -0
  232. package/config/easy/CreateTurnHereSigns/input/07 - test 7.txt +1 -0
  233. package/config/easy/CreateTurnHereSigns/input/08 - test 8.txt +1 -0
  234. package/config/easy/CreateTurnHereSigns/input/09 - test 9.txt +1 -0
  235. package/config/easy/CreateTurnHereSigns/input/10 - test 10.txt +1 -0
  236. package/config/easy/CreateTurnHereSigns/input/11 - test 11.txt +1 -0
  237. package/config/easy/CreateTurnHereSigns/input/12 - test 12.txt +1 -0
  238. package/config/easy/CreateTurnHereSigns/input/13 - test 13.txt +1 -0
  239. package/config/easy/CreateTurnHereSigns/output/01 - test 1.txt +9 -0
  240. package/config/easy/CreateTurnHereSigns/output/02 - test 2.txt +11 -0
  241. package/config/easy/CreateTurnHereSigns/output/03 - test 3.txt +13 -0
  242. package/config/easy/CreateTurnHereSigns/output/04 - test 4.txt +7 -0
  243. package/config/easy/CreateTurnHereSigns/output/05 - test 5.txt +19 -0
  244. package/config/easy/CreateTurnHereSigns/output/06 - test 6.txt +27 -0
  245. package/config/easy/CreateTurnHereSigns/output/07 - test 7.txt +21 -0
  246. package/config/easy/CreateTurnHereSigns/output/08 - test 8.txt +11 -0
  247. package/config/easy/CreateTurnHereSigns/output/09 - test 9.txt +17 -0
  248. package/config/easy/CreateTurnHereSigns/output/10 - test 10.txt +5 -0
  249. package/config/easy/CreateTurnHereSigns/output/11 - test 11.txt +7 -0
  250. package/config/easy/CreateTurnHereSigns/output/12 - test 12.txt +5 -0
  251. package/config/easy/CreateTurnHereSigns/output/13 - test 13.txt +7 -0
  252. package/config/easy/DigitalScoreboard/code/CGCode.js +8 -0
  253. package/config/easy/DigitalScoreboard/code/CGCode.php +10 -0
  254. package/config/easy/DigitalScoreboard/config.json +48 -0
  255. package/config/easy/DigitalScoreboard/input/01 - Addition Only - Test 1.txt +23 -0
  256. package/config/easy/DigitalScoreboard/input/02 - Subtraction Only - Test 2.txt +23 -0
  257. package/config/easy/DigitalScoreboard/input/03 - test 3.txt +23 -0
  258. package/config/easy/DigitalScoreboard/input/04 - test 4.txt +23 -0
  259. package/config/easy/DigitalScoreboard/input/05 - test 5.txt +23 -0
  260. package/config/easy/DigitalScoreboard/input/06 - Nothing ever changes - Test 6.txt +23 -0
  261. package/config/easy/DigitalScoreboard/input/07 - test 7.txt +23 -0
  262. package/config/easy/DigitalScoreboard/input/08 - For Rafarafa - Test 8.txt +23 -0
  263. package/config/easy/DigitalScoreboard/output/01 - Addition Only - Test 1.txt +1 -0
  264. package/config/easy/DigitalScoreboard/output/02 - Subtraction Only - Test 2.txt +1 -0
  265. package/config/easy/DigitalScoreboard/output/03 - test 3.txt +1 -0
  266. package/config/easy/DigitalScoreboard/output/04 - test 4.txt +1 -0
  267. package/config/easy/DigitalScoreboard/output/05 - test 5.txt +1 -0
  268. package/config/easy/DigitalScoreboard/output/06 - Nothing ever changes - Test 6.txt +1 -0
  269. package/config/easy/DigitalScoreboard/output/07 - test 7.txt +1 -0
  270. package/config/easy/DigitalScoreboard/output/08 - For Rafarafa - Test 8.txt +1 -0
  271. package/config/easy/DisorderedFirstContact/config.json +1 -1
  272. package/config/easy/EmbeddedChessboards/code/CGCode.js +12 -0
  273. package/config/easy/EmbeddedChessboards/code/CGCode.php +11 -0
  274. package/config/easy/EmbeddedChessboards/config.json +28 -0
  275. package/config/easy/EmbeddedChessboards/input/01 - Small Painting.txt +6 -0
  276. package/config/easy/EmbeddedChessboards/input/02 - Bigger Painting.txt +6 -0
  277. package/config/easy/EmbeddedChessboards/input/03 - Random 1.txt +51 -0
  278. package/config/easy/EmbeddedChessboards/input/04 - Random 2.txt +51 -0
  279. package/config/easy/EmbeddedChessboards/output/01 - Small Painting.txt +5 -0
  280. package/config/easy/EmbeddedChessboards/output/02 - Bigger Painting.txt +5 -0
  281. package/config/easy/EmbeddedChessboards/output/03 - Random 1.txt +50 -0
  282. package/config/easy/EmbeddedChessboards/output/04 - Random 2.txt +50 -0
  283. package/config/easy/EscapeTheMadness/code/CGCode.js +6 -0
  284. package/config/easy/EscapeTheMadness/code/CGCode.php +7 -0
  285. package/config/easy/EscapeTheMadness/config.json +58 -0
  286. package/config/easy/EscapeTheMadness/input/01 - Only C-style trigraphs.txt +1 -0
  287. package/config/easy/EscapeTheMadness/input/02 - C-style trigraphs with unsupported characters.txt +1 -0
  288. package/config/easy/EscapeTheMadness/input/03 - Only backslash escape sequences.txt +1 -0
  289. package/config/easy/EscapeTheMadness/input/04 - Combined trigraphs and backslash escape sequences.txt +1 -0
  290. package/config/easy/EscapeTheMadness/input/05 - No double backslash escape sequence evaluation.txt +1 -0
  291. package/config/easy/EscapeTheMadness/input/06 - Only HTML entities.txt +1 -0
  292. package/config/easy/EscapeTheMadness/input/07 - Only known HTML entities.txt +1 -0
  293. package/config/easy/EscapeTheMadness/input/08 - No double evaluation of HTML entities.txt +1 -0
  294. package/config/easy/EscapeTheMadness/input/09 - HTML entities must be rendered after backslash escape sequences.txt +1 -0
  295. package/config/easy/EscapeTheMadness/input/10 - All together now!.txt +1 -0
  296. package/config/easy/EscapeTheMadness/output/01 - Only C-style trigraphs.txt +1 -0
  297. package/config/easy/EscapeTheMadness/output/02 - C-style trigraphs with unsupported characters.txt +1 -0
  298. package/config/easy/EscapeTheMadness/output/03 - Only backslash escape sequences.txt +1 -0
  299. package/config/easy/EscapeTheMadness/output/04 - Combined trigraphs and backslash escape sequences.txt +1 -0
  300. package/config/easy/EscapeTheMadness/output/05 - No double backslash escape sequence evaluation.txt +1 -0
  301. package/config/easy/EscapeTheMadness/output/06 - Only HTML entities.txt +1 -0
  302. package/config/easy/EscapeTheMadness/output/07 - Only known HTML entities.txt +1 -0
  303. package/config/easy/EscapeTheMadness/output/08 - No double evaluation of HTML entities.txt +1 -0
  304. package/config/easy/EscapeTheMadness/output/09 - HTML entities must be rendered after backslash escape sequences.txt +1 -0
  305. package/config/easy/EscapeTheMadness/output/10 - All together now!.txt +1 -0
  306. package/config/easy/EuclidsAlgorithm/code/CGCode.js +8 -0
  307. package/config/easy/EuclidsAlgorithm/code/CGCode.php +7 -0
  308. package/config/easy/EuclidsAlgorithm/config.json +28 -0
  309. package/config/easy/EuclidsAlgorithm/input/01 - 25 3.txt +1 -0
  310. package/config/easy/EuclidsAlgorithm/input/02 - 50 14.txt +1 -0
  311. package/config/easy/EuclidsAlgorithm/input/03 - 115 47.txt +1 -0
  312. package/config/easy/EuclidsAlgorithm/input/04 - 4857 147.txt +1 -0
  313. package/config/easy/EuclidsAlgorithm/output/01 - 25 3.txt +3 -0
  314. package/config/easy/EuclidsAlgorithm/output/02 - 50 14.txt +5 -0
  315. package/config/easy/EuclidsAlgorithm/output/03 - 115 47.txt +5 -0
  316. package/config/easy/EuclidsAlgorithm/output/04 - 4857 147.txt +4 -0
  317. package/config/easy/FoldingPaper/code/CGCode.js +7 -0
  318. package/config/easy/FoldingPaper/code/CGCode.php +8 -0
  319. package/config/easy/FoldingPaper/config.json +33 -0
  320. package/config/easy/FoldingPaper/input/01 - 2 ply.txt +2 -0
  321. package/config/easy/FoldingPaper/input/02 - 4 ply.txt +2 -0
  322. package/config/easy/FoldingPaper/input/03 - 6 ply.txt +2 -0
  323. package/config/easy/FoldingPaper/input/04 - 8 ply easy.txt +2 -0
  324. package/config/easy/FoldingPaper/input/05 - 8 ply.txt +2 -0
  325. package/config/easy/FoldingPaper/output/02 - 4 ply.txt +1 -0
  326. package/config/easy/FoldingPaper/output/03 - 6 ply.txt +1 -0
  327. package/config/easy/FoldingPaper/output/05 - 8 ply.txt +1 -0
  328. package/config/easy/GDQBinaryCodedDecimalClock/code/CGCode.js +8 -0
  329. package/config/easy/GDQBinaryCodedDecimalClock/code/CGCode.php +10 -0
  330. package/config/easy/GDQBinaryCodedDecimalClock/config.json +28 -0
  331. package/config/easy/GDQBinaryCodedDecimalClock/input/01 - Single Digits.txt +1 -0
  332. package/config/easy/GDQBinaryCodedDecimalClock/input/02 - Double Digits.txt +1 -0
  333. package/config/easy/GDQBinaryCodedDecimalClock/input/03 - Tunic - Any% Unrestricted (21 42).txt +1 -0
  334. package/config/easy/GDQBinaryCodedDecimalClock/input/04 - Donkey Kong 64 - No Levels Early (02 04 09).txt +1 -0
  335. package/config/easy/GDQBinaryCodedDecimalClock/output/01 - Single Digits.txt +4 -0
  336. package/config/easy/GDQBinaryCodedDecimalClock/output/02 - Double Digits.txt +4 -0
  337. package/config/easy/GDQBinaryCodedDecimalClock/output/03 - Tunic - Any% Unrestricted (21 42).txt +4 -0
  338. package/config/easy/GDQBinaryCodedDecimalClock/output/04 - Donkey Kong 64 - No Levels Early (02 04 09).txt +4 -0
  339. package/config/easy/Histogram/code/CGCode.js +6 -0
  340. package/config/easy/Histogram/code/CGCode.php +7 -0
  341. package/config/easy/Histogram/config.json +28 -0
  342. package/config/easy/Histogram/input/01 - One letter.txt +1 -0
  343. package/config/easy/Histogram/input/02 - Alphabet.txt +1 -0
  344. package/config/easy/Histogram/input/03 - Coding game.txt +1 -0
  345. package/config/easy/Histogram/input/04 - Lorem ipsum.txt +1 -0
  346. package/config/easy/Histogram/output/01 - One letter.txt +53 -0
  347. package/config/easy/Histogram/output/02 - Alphabet.txt +53 -0
  348. package/config/easy/Histogram/output/03 - Coding game.txt +53 -0
  349. package/config/easy/Histogram/output/04 - Lorem ipsum.txt +53 -0
  350. package/config/easy/KangarooWords/code/CGCode.js +9 -0
  351. package/config/easy/KangarooWords/code/CGCode.php +11 -0
  352. package/config/easy/KangarooWords/config.json +48 -0
  353. package/config/easy/KangarooWords/input/01 - Action.txt +2 -0
  354. package/config/easy/KangarooWords/input/02 - Fire.txt +2 -0
  355. package/config/easy/KangarooWords/input/03 - Not alone.txt +2 -0
  356. package/config/easy/KangarooWords/input/04 - Example.txt +3 -0
  357. package/config/easy/KangarooWords/input/05 - Screams.txt +3 -0
  358. package/config/easy/KangarooWords/input/06 - Pointless.txt +6 -0
  359. package/config/easy/KangarooWords/input/07 - CodingGame.txt +3 -0
  360. package/config/easy/KangarooWords/input/08 - Pointless.txt +6 -0
  361. package/config/easy/KangarooWords/output/01 - Action.txt +1 -0
  362. package/config/easy/KangarooWords/output/02 - Fire.txt +1 -0
  363. package/config/easy/KangarooWords/output/03 - Not alone.txt +2 -0
  364. package/config/easy/KangarooWords/output/04 - Example.txt +2 -0
  365. package/config/easy/KangarooWords/output/05 - Screams.txt +6 -0
  366. package/config/easy/KangarooWords/output/06 - Pointless.txt +1 -0
  367. package/config/easy/KangarooWords/output/07 - CodingGame.txt +2 -0
  368. package/config/easy/KangarooWords/output/08 - Pointless.txt +1 -0
  369. package/config/easy/LibraryDependencies/code/CGCode.js +13 -0
  370. package/config/easy/LibraryDependencies/code/CGCode.php +16 -0
  371. package/config/easy/LibraryDependencies/config.json +68 -0
  372. package/config/easy/LibraryDependencies/input/01 - Successful compilation.txt +7 -0
  373. package/config/easy/LibraryDependencies/input/02 - Fatal error.txt +8 -0
  374. package/config/easy/LibraryDependencies/input/03 - Reordering.txt +8 -0
  375. package/config/easy/LibraryDependencies/input/04 - Reordering logic.txt +10 -0
  376. package/config/easy/LibraryDependencies/input/05 - Not lexicographic order but no error.txt +6 -0
  377. package/config/easy/LibraryDependencies/input/06 - Real fake test 15 libraries 1.txt +27 -0
  378. package/config/easy/LibraryDependencies/input/07 - Real fake test 15 libraries 2 (fatal).txt +26 -0
  379. package/config/easy/LibraryDependencies/input/08 - Real fake test 15 libraries 3 (compiles).txt +27 -0
  380. package/config/easy/LibraryDependencies/input/09 - 40 libraries.txt +66 -0
  381. package/config/easy/LibraryDependencies/input/10 - Max size in codingame.txt +161 -0
  382. package/config/easy/LibraryDependencies/input/11 - Extra 1.txt +17 -0
  383. package/config/easy/LibraryDependencies/input/12 - Extra 2.txt +21 -0
  384. package/config/easy/LibraryDependencies/output/01 - Successful compilation.txt +1 -0
  385. package/config/easy/LibraryDependencies/output/02 - Fatal error.txt +2 -0
  386. package/config/easy/LibraryDependencies/output/03 - Reordering.txt +6 -0
  387. package/config/easy/LibraryDependencies/output/04 - Reordering logic.txt +8 -0
  388. package/config/easy/LibraryDependencies/output/05 - Not lexicographic order but no error.txt +1 -0
  389. package/config/easy/LibraryDependencies/output/06 - Real fake test 15 libraries 1.txt +17 -0
  390. package/config/easy/LibraryDependencies/output/07 - Real fake test 15 libraries 2 (fatal).txt +2 -0
  391. package/config/easy/LibraryDependencies/output/08 - Real fake test 15 libraries 3 (compiles).txt +1 -0
  392. package/config/easy/LibraryDependencies/output/09 - 40 libraries.txt +42 -0
  393. package/config/easy/LibraryDependencies/output/10 - Max size in codingame.txt +95 -0
  394. package/config/easy/LibraryDependencies/output/11 - Extra 1.txt +2 -0
  395. package/config/easy/LibraryDependencies/output/12 - Extra 2.txt +12 -0
  396. package/config/easy/LongestCoast/code/CGCode.js +9 -0
  397. package/config/easy/LongestCoast/code/CGCode.php +11 -0
  398. package/config/easy/LongestCoast/config.json +43 -0
  399. package/config/easy/LongestCoast/input/01 - Simple start.txt +4 -0
  400. package/config/easy/LongestCoast/input/02 - Multiple islands.txt +7 -0
  401. package/config/easy/LongestCoast/input/03 - Checkerboard.txt +6 -0
  402. package/config/easy/LongestCoast/input/04 - Weird shaped island.txt +9 -0
  403. package/config/easy/LongestCoast/input/05 - Linked islands.txt +11 -0
  404. package/config/easy/LongestCoast/input/06 - No water.txt +9 -0
  405. package/config/easy/LongestCoast/input/07 - Large Archipelago.txt +51 -0
  406. package/config/easy/LongestCoast/output/01 - Simple start.txt +1 -0
  407. package/config/easy/LongestCoast/output/02 - Multiple islands.txt +1 -0
  408. package/config/easy/LongestCoast/output/03 - Checkerboard.txt +1 -0
  409. package/config/easy/LongestCoast/output/04 - Weird shaped island.txt +1 -0
  410. package/config/easy/LongestCoast/output/05 - Linked islands.txt +1 -0
  411. package/config/easy/LongestCoast/output/06 - No water.txt +1 -0
  412. package/config/easy/LongestCoast/output/07 - Large Archipelago.txt +1 -0
  413. package/config/easy/MakeAnAtariFont/code/CGCode.js +6 -0
  414. package/config/easy/MakeAnAtariFont/code/CGCode.php +7 -0
  415. package/config/easy/MakeAnAtariFont/config.json +83 -0
  416. package/config/easy/MakeAnAtariFont/input/01 - ABC.txt +1 -0
  417. package/config/easy/MakeAnAtariFont/input/02 - QXYZ.txt +1 -0
  418. package/config/easy/MakeAnAtariFont/input/03 - HELLO.txt +1 -0
  419. package/config/easy/MakeAnAtariFont/input/04 - WORLD.txt +1 -0
  420. package/config/easy/MakeAnAtariFont/input/05 - A.txt +1 -0
  421. package/config/easy/MakeAnAtariFont/input/06 - QUICK.txt +1 -0
  422. package/config/easy/MakeAnAtariFont/input/07 - BROWN.txt +1 -0
  423. package/config/easy/MakeAnAtariFont/input/08 - FOX.txt +1 -0
  424. package/config/easy/MakeAnAtariFont/input/09 - JUMPS.txt +1 -0
  425. package/config/easy/MakeAnAtariFont/input/10 - OVER.txt +1 -0
  426. package/config/easy/MakeAnAtariFont/input/11 - THE.txt +1 -0
  427. package/config/easy/MakeAnAtariFont/input/12 - LAZY.txt +1 -0
  428. package/config/easy/MakeAnAtariFont/input/13 - DOG.txt +1 -0
  429. package/config/easy/MakeAnAtariFont/input/14 - ATARI.txt +1 -0
  430. package/config/easy/MakeAnAtariFont/input/15 - CODINGAME.txt +1 -0
  431. package/config/easy/MakeAnAtariFont/output/01 - ABC.txt +6 -0
  432. package/config/easy/MakeAnAtariFont/output/02 - QXYZ.txt +7 -0
  433. package/config/easy/MakeAnAtariFont/output/03 - HELLO.txt +6 -0
  434. package/config/easy/MakeAnAtariFont/output/04 - WORLD.txt +6 -0
  435. package/config/easy/MakeAnAtariFont/output/05 - A.txt +6 -0
  436. package/config/easy/MakeAnAtariFont/output/06 - QUICK.txt +7 -0
  437. package/config/easy/MakeAnAtariFont/output/07 - BROWN.txt +6 -0
  438. package/config/easy/MakeAnAtariFont/output/08 - FOX.txt +6 -0
  439. package/config/easy/MakeAnAtariFont/output/09 - JUMPS.txt +6 -0
  440. package/config/easy/MakeAnAtariFont/output/10 - OVER.txt +6 -0
  441. package/config/easy/MakeAnAtariFont/output/11 - THE.txt +6 -0
  442. package/config/easy/MakeAnAtariFont/output/12 - LAZY.txt +6 -0
  443. package/config/easy/MakeAnAtariFont/output/13 - DOG.txt +6 -0
  444. package/config/easy/MakeAnAtariFont/output/14 - ATARI.txt +6 -0
  445. package/config/easy/MakeAnAtariFont/output/15 - CODINGAME.txt +6 -0
  446. package/config/easy/MaxArea/code/CGCode.js +10 -0
  447. package/config/easy/MaxArea/code/CGCode.php +12 -0
  448. package/config/easy/MaxArea/config.json +33 -0
  449. package/config/easy/MaxArea/input/01 - Normal.txt +2 -0
  450. package/config/easy/MaxArea/input/02 - Small.txt +2 -0
  451. package/config/easy/MaxArea/input/03 - Big.txt +2 -0
  452. package/config/easy/MaxArea/input/04 - Bigger.txt +2 -0
  453. package/config/easy/MaxArea/input/05 - Empty.txt +2 -0
  454. package/config/easy/MaxArea/output/01 - Normal.txt +1 -0
  455. package/config/easy/MaxArea/output/02 - Small.txt +1 -0
  456. package/config/easy/MaxArea/output/03 - Big.txt +1 -0
  457. package/config/easy/MaxArea/output/04 - Bigger.txt +1 -0
  458. package/config/easy/MaxArea/output/05 - Empty.txt +1 -0
  459. package/config/{medium → easy}/MerlinsMagicSquare/config.json +1 -1
  460. package/config/easy/MerlinsMagicSquare/output/13 - test 13.txt +1 -0
  461. package/config/easy/MerlinsMagicSquare/output/21 - test 21.txt +1 -0
  462. package/config/easy/MerlinsMagicSquare/output/23 - test 23.txt +1 -0
  463. package/config/easy/MerlinsMagicSquare/output/24 - test 24.txt +1 -0
  464. package/config/easy/MessedUpMosaics/code/CGCode.js +10 -0
  465. package/config/easy/MessedUpMosaics/code/CGCode.php +12 -0
  466. package/config/easy/MessedUpMosaics/config.json +43 -0
  467. package/config/easy/MessedUpMosaics/input/01 - Small mosaic.txt +8 -0
  468. package/config/easy/MessedUpMosaics/input/02 - 2-tiles pattern, aligned.txt +20 -0
  469. package/config/easy/MessedUpMosaics/input/03 - 2-tiles pattern, staggered.txt +14 -0
  470. package/config/easy/MessedUpMosaics/input/04 - 4-tiles pattern, aligned.txt +26 -0
  471. package/config/easy/MessedUpMosaics/input/05 - 6-tiles pattern, staggered.txt +18 -0
  472. package/config/easy/MessedUpMosaics/input/06 - Stagger Fever.txt +38 -0
  473. package/config/easy/MessedUpMosaics/input/07 - Wavy pattern.txt +32 -0
  474. package/config/easy/MessedUpMosaics/output/01 - Small mosaic.txt +1 -0
  475. package/config/easy/MessedUpMosaics/output/02 - 2-tiles pattern, aligned.txt +1 -0
  476. package/config/easy/MessedUpMosaics/output/03 - 2-tiles pattern, staggered.txt +1 -0
  477. package/config/easy/MessedUpMosaics/output/04 - 4-tiles pattern, aligned.txt +1 -0
  478. package/config/easy/MessedUpMosaics/output/05 - 6-tiles pattern, staggered.txt +1 -0
  479. package/config/easy/MessedUpMosaics/output/06 - Stagger Fever.txt +1 -0
  480. package/config/easy/MessedUpMosaics/output/07 - Wavy pattern.txt +1 -0
  481. package/config/easy/MetricUnits/code/CGCode.js +6 -0
  482. package/config/easy/MetricUnits/code/CGCode.php +7 -0
  483. package/config/easy/MetricUnits/config.json +53 -0
  484. package/config/easy/MetricUnits/input/01 - Simple expression.txt +1 -0
  485. package/config/easy/MetricUnits/input/02 - Same units.txt +1 -0
  486. package/config/easy/MetricUnits/input/03 - Kilometers to decimeters.txt +1 -0
  487. package/config/easy/MetricUnits/input/04 - Kilometers to millimeters.txt +1 -0
  488. package/config/easy/MetricUnits/input/05 - Meters to centimeters.txt +1 -0
  489. package/config/easy/MetricUnits/input/06 - Meters to millimeters.txt +1 -0
  490. package/config/easy/MetricUnits/input/07 - Centimeters to millimeters.txt +1 -0
  491. package/config/easy/MetricUnits/input/08 - Decimeters to micrometers.txt +1 -0
  492. package/config/easy/MetricUnits/input/09 - Millimeters to micrometers.txt +1 -0
  493. package/config/easy/MetricUnits/output/01 - Simple expression.txt +1 -0
  494. package/config/easy/MetricUnits/output/02 - Same units.txt +1 -0
  495. package/config/easy/MetricUnits/output/03 - Kilometers to decimeters.txt +1 -0
  496. package/config/easy/MetricUnits/output/04 - Kilometers to millimeters.txt +1 -0
  497. package/config/easy/MetricUnits/output/05 - Meters to centimeters.txt +1 -0
  498. package/config/easy/MetricUnits/output/06 - Meters to millimeters.txt +1 -0
  499. package/config/easy/MetricUnits/output/07 - Centimeters to millimeters.txt +1 -0
  500. package/config/easy/MetricUnits/output/08 - Decimeters to micrometers.txt +1 -0
  501. package/config/easy/MetricUnits/output/09 - Millimeters to micrometers.txt +1 -0
  502. package/config/easy/Mirrors/code/CGCode.js +7 -0
  503. package/config/easy/Mirrors/code/CGCode.php +12 -0
  504. package/config/easy/Mirrors/config.json +38 -0
  505. package/config/easy/Mirrors/input/01 - test 1.txt +2 -0
  506. package/config/easy/Mirrors/input/02 - test 2.txt +2 -0
  507. package/config/easy/Mirrors/input/03 - test 3.txt +2 -0
  508. package/config/easy/Mirrors/input/04 - test 4.txt +2 -0
  509. package/config/easy/Mirrors/input/05 - test 5.txt +2 -0
  510. package/config/easy/Mirrors/input/06 - test 6.txt +2 -0
  511. package/config/easy/Mirrors/output/01 - test 1.txt +1 -0
  512. package/config/easy/Mirrors/output/02 - test 2.txt +1 -0
  513. package/config/easy/Mirrors/output/03 - test 3.txt +1 -0
  514. package/config/easy/Mirrors/output/04 - test 4.txt +1 -0
  515. package/config/easy/Mirrors/output/05 - test 5.txt +1 -0
  516. package/config/easy/Mirrors/output/06 - test 6.txt +1 -0
  517. package/config/easy/NATOAlphabetsOddUncles/code/CGCode.js +6 -0
  518. package/config/easy/NATOAlphabetsOddUncles/code/CGCode.php +7 -0
  519. package/config/easy/NATOAlphabetsOddUncles/config.json +83 -0
  520. package/config/easy/NATOAlphabetsOddUncles/input/01 - Starting with oldest - Test 1.txt +1 -0
  521. package/config/easy/NATOAlphabetsOddUncles/input/02 - Then next oldest - Test 2.txt +1 -0
  522. package/config/easy/NATOAlphabetsOddUncles/input/03 - Almost current - Test 3.txt +1 -0
  523. package/config/easy/NATOAlphabetsOddUncles/input/04 - Let/342/200/231s Regress - Test 4.txt" +1 -0
  524. package/config/easy/NATOAlphabetsOddUncles/input/05 - Rest are random - Test 5.txt +1 -0
  525. package/config/easy/NATOAlphabetsOddUncles/input/06 - test 6.txt +1 -0
  526. package/config/easy/NATOAlphabetsOddUncles/input/07 - test 7.txt +1 -0
  527. package/config/easy/NATOAlphabetsOddUncles/input/08 - test 8.txt +1 -0
  528. package/config/easy/NATOAlphabetsOddUncles/input/09 - test 9.txt +1 -0
  529. package/config/easy/NATOAlphabetsOddUncles/input/10 - Charlie is here - Test 10.txt +1 -0
  530. package/config/easy/NATOAlphabetsOddUncles/input/11 - Charlie is here too - Test 11.txt +1 -0
  531. package/config/easy/NATOAlphabetsOddUncles/input/12 - Is it This Quebec or ... - Test 12.txt +1 -0
  532. package/config/easy/NATOAlphabetsOddUncles/input/13 - ... or That Quebec - Test 13.txt +1 -0
  533. package/config/easy/NATOAlphabetsOddUncles/input/14 - Which alphabet has both - Test 14.txt +1 -0
  534. package/config/easy/NATOAlphabetsOddUncles/output/01 - Starting with oldest - Test 1.txt +1 -0
  535. package/config/easy/NATOAlphabetsOddUncles/output/02 - Then next oldest - Test 2.txt +1 -0
  536. package/config/easy/NATOAlphabetsOddUncles/output/03 - Almost current - Test 3.txt +1 -0
  537. package/config/easy/NATOAlphabetsOddUncles/output/04 - Let/342/200/231s Regress - Test 4.txt" +1 -0
  538. package/config/easy/NATOAlphabetsOddUncles/output/05 - Rest are random - Test 5.txt +1 -0
  539. package/config/easy/NATOAlphabetsOddUncles/output/06 - test 6.txt +1 -0
  540. package/config/easy/NATOAlphabetsOddUncles/output/07 - test 7.txt +1 -0
  541. package/config/easy/NATOAlphabetsOddUncles/output/08 - test 8.txt +1 -0
  542. package/config/easy/NATOAlphabetsOddUncles/output/09 - test 9.txt +1 -0
  543. package/config/easy/NATOAlphabetsOddUncles/output/10 - Charlie is here - Test 10.txt +1 -0
  544. package/config/easy/NATOAlphabetsOddUncles/output/11 - Charlie is here too - Test 11.txt +1 -0
  545. package/config/easy/NATOAlphabetsOddUncles/output/12 - Is it This Quebec or ... - Test 12.txt +1 -0
  546. package/config/easy/NATOAlphabetsOddUncles/output/13 - ... or That Quebec - Test 13.txt +1 -0
  547. package/config/easy/NATOAlphabetsOddUncles/output/14 - Which alphabet has both - Test 14.txt +1 -0
  548. package/config/easy/NumberPartition/code/CGCode.js +6 -0
  549. package/config/easy/NumberPartition/code/CGCode.php +7 -0
  550. package/config/easy/NumberPartition/config.json +28 -0
  551. package/config/easy/NumberPartition/input/01 - test 1.txt +1 -0
  552. package/config/easy/NumberPartition/input/02 - test 2.txt +1 -0
  553. package/config/easy/NumberPartition/input/03 - test 3.txt +1 -0
  554. package/config/easy/NumberPartition/input/04 - test 4.txt +1 -0
  555. package/config/easy/NumberPartition/output/01 - test 1.txt +5 -0
  556. package/config/easy/NumberPartition/output/02 - test 2.txt +2 -0
  557. package/config/easy/NumberPartition/output/03 - test 3.txt +3 -0
  558. package/config/easy/NumberPartition/output/04 - test 4.txt +7 -0
  559. package/config/easy/PanelCount/code/CGCode.js +17 -0
  560. package/config/easy/PanelCount/code/CGCode.php +21 -0
  561. package/config/easy/PanelCount/config.json +48 -0
  562. package/config/easy/PanelCount/input/01 - Simple.txt +10 -0
  563. package/config/easy/PanelCount/input/02 - Only one property.txt +12 -0
  564. package/config/easy/PanelCount/input/03 - Several properties.txt +20 -0
  565. package/config/easy/PanelCount/input/04 - More complex formula.txt +19 -0
  566. package/config/easy/PanelCount/input/05 - Unknown property.txt +20 -0
  567. package/config/easy/PanelCount/input/06 - No one.txt +22 -0
  568. package/config/easy/PanelCount/input/07 - More persons.txt +218 -0
  569. package/config/easy/PanelCount/input/08 - Formulas repeating.txt +1107 -0
  570. package/config/easy/PanelCount/output/01 - Simple.txt +1 -0
  571. package/config/easy/PanelCount/output/02 - Only one property.txt +1 -0
  572. package/config/easy/PanelCount/output/03 - Several properties.txt +2 -0
  573. package/config/easy/PanelCount/output/04 - More complex formula.txt +1 -0
  574. package/config/easy/PanelCount/output/05 - Unknown property.txt +2 -0
  575. package/config/easy/PanelCount/output/06 - No one.txt +2 -0
  576. package/config/easy/PanelCount/output/07 - More persons.txt +10 -0
  577. package/config/easy/PanelCount/output/08 - Formulas repeating.txt +300 -0
  578. package/config/easy/PeriodicTableSpelling/code/CGCode.js +6 -0
  579. package/config/easy/PeriodicTableSpelling/code/CGCode.php +7 -0
  580. package/config/easy/PeriodicTableSpelling/config.json +58 -0
  581. package/config/easy/PeriodicTableSpelling/input/01 - Carbon.txt +1 -0
  582. package/config/easy/PeriodicTableSpelling/input/02 - Krypton.txt +1 -0
  583. package/config/easy/PeriodicTableSpelling/input/03 - Javascript.txt +1 -0
  584. package/config/easy/PeriodicTableSpelling/input/04 - Snowy.txt +1 -0
  585. package/config/easy/PeriodicTableSpelling/input/05 - Hyperpathogenesis.txt +1 -0
  586. package/config/easy/PeriodicTableSpelling/input/06 - Obvious.txt +1 -0
  587. package/config/easy/PeriodicTableSpelling/input/07 - Canada.txt +1 -0
  588. package/config/easy/PeriodicTableSpelling/input/08 - Casinos.txt +1 -0
  589. package/config/easy/PeriodicTableSpelling/input/09 - Hinausgeschossen.txt +1 -0
  590. package/config/easy/PeriodicTableSpelling/input/10 - Innocuousnesses.txt +1 -0
  591. package/config/easy/PeriodicTableSpelling/output/01 - Carbon.txt +2 -0
  592. package/config/easy/PeriodicTableSpelling/output/02 - Krypton.txt +1 -0
  593. package/config/easy/PeriodicTableSpelling/output/03 - Javascript.txt +1 -0
  594. package/config/easy/PeriodicTableSpelling/output/04 - Snowy.txt +3 -0
  595. package/config/easy/PeriodicTableSpelling/output/05 - Hyperpathogenesis.txt +9 -0
  596. package/config/easy/PeriodicTableSpelling/output/06 - Obvious.txt +1 -0
  597. package/config/easy/PeriodicTableSpelling/output/07 - Canada.txt +1 -0
  598. package/config/easy/PeriodicTableSpelling/output/08 - Casinos.txt +13 -0
  599. package/config/easy/PeriodicTableSpelling/output/09 - Hinausgeschossen.txt +27 -0
  600. package/config/easy/PeriodicTableSpelling/output/10 - Innocuousnesses.txt +48 -0
  601. package/config/easy/QueenControl/code/CGCode.js +9 -0
  602. package/config/easy/QueenControl/code/CGCode.php +11 -0
  603. package/config/easy/QueenControl/config.json +83 -0
  604. package/config/easy/QueenControl/input/01 - Corner.txt +9 -0
  605. package/config/easy/QueenControl/input/02 - Center.txt +9 -0
  606. package/config/easy/QueenControl/input/03 - White ally down right.txt +9 -0
  607. package/config/easy/QueenControl/input/04 - White ally up left.txt +9 -0
  608. package/config/easy/QueenControl/input/05 - White ally diagonal.txt +9 -0
  609. package/config/easy/QueenControl/input/06 - Black ally down right.txt +9 -0
  610. package/config/easy/QueenControl/input/07 - Black ally up left.txt +9 -0
  611. package/config/easy/QueenControl/input/08 - Black ally diagonal.txt +9 -0
  612. package/config/easy/QueenControl/input/09 - Black enemy.txt +9 -0
  613. package/config/easy/QueenControl/input/10 - White enemy.txt +9 -0
  614. package/config/easy/QueenControl/input/11 - Surrounded by allies.txt +9 -0
  615. package/config/easy/QueenControl/input/12 - Surrounded by enemies.txt +9 -0
  616. package/config/easy/QueenControl/input/13 - Advanced test 1.txt +9 -0
  617. package/config/easy/QueenControl/input/14 - Advanced test 2.txt +9 -0
  618. package/config/easy/QueenControl/input/15 - Advanced test 3.txt +9 -0
  619. package/config/easy/QueenControl/output/01 - Corner.txt +1 -0
  620. package/config/easy/QueenControl/output/02 - Center.txt +1 -0
  621. package/config/easy/QueenControl/output/03 - White ally down right.txt +1 -0
  622. package/config/easy/QueenControl/output/04 - White ally up left.txt +1 -0
  623. package/config/easy/QueenControl/output/05 - White ally diagonal.txt +1 -0
  624. package/config/easy/QueenControl/output/06 - Black ally down right.txt +1 -0
  625. package/config/easy/QueenControl/output/07 - Black ally up left.txt +1 -0
  626. package/config/easy/QueenControl/output/08 - Black ally diagonal.txt +1 -0
  627. package/config/easy/QueenControl/output/09 - Black enemy.txt +1 -0
  628. package/config/easy/QueenControl/output/10 - White enemy.txt +1 -0
  629. package/config/easy/QueenControl/output/11 - Surrounded by allies.txt +1 -0
  630. package/config/easy/QueenControl/output/12 - Surrounded by enemies.txt +1 -0
  631. package/config/easy/QueenControl/output/13 - Advanced test 1.txt +1 -0
  632. package/config/easy/QueenControl/output/14 - Advanced test 2.txt +1 -0
  633. package/config/easy/QueenControl/output/15 - Advanced test 3.txt +1 -0
  634. package/config/easy/RocksPapersScissorses/code/CGCode.js +10 -0
  635. package/config/easy/RocksPapersScissorses/code/CGCode.php +12 -0
  636. package/config/easy/RocksPapersScissorses/config.json +28 -0
  637. package/config/easy/RocksPapersScissorses/input/01 - Easy Win.txt +5 -0
  638. package/config/easy/RocksPapersScissorses/input/02 - Draw Doesn/342/200/231t Stop The Match.txt" +8 -0
  639. package/config/easy/RocksPapersScissorses/input/03 - Round The Clock.txt +6 -0
  640. package/config/easy/RocksPapersScissorses/input/04 - Tiebreaker.txt +11 -0
  641. package/config/easy/RocksPapersScissorses/output/01 - Easy Win.txt +2 -0
  642. package/config/easy/RocksPapersScissorses/output/02 - Draw Doesn/342/200/231t Stop The Match.txt" +2 -0
  643. package/config/easy/RocksPapersScissorses/output/03 - Round The Clock.txt +2 -0
  644. package/config/easy/RocksPapersScissorses/output/04 - Tiebreaker.txt +2 -0
  645. package/config/easy/ScrabbleScore/code/CGCode.js +24 -0
  646. package/config/easy/ScrabbleScore/code/CGCode.php +26 -0
  647. package/config/easy/ScrabbleScore/config.json +78 -0
  648. package/config/easy/ScrabbleScore/input/01 - Easy.txt +41 -0
  649. package/config/easy/ScrabbleScore/input/02 - Double letter score.txt +41 -0
  650. package/config/easy/ScrabbleScore/input/03 - Triple letter score.txt +41 -0
  651. package/config/easy/ScrabbleScore/input/04 - Double word score.txt +41 -0
  652. package/config/easy/ScrabbleScore/input/05 - Triple word score.txt +53 -0
  653. package/config/easy/ScrabbleScore/input/06 - Multiple multiplicator.txt +49 -0
  654. package/config/easy/ScrabbleScore/input/07 - Count the 2 words.txt +50 -0
  655. package/config/easy/ScrabbleScore/input/08 - Special cell on 2 words.txt +74 -0
  656. package/config/easy/ScrabbleScore/input/09 - Special cell on 2 words.txt +74 -0
  657. package/config/easy/ScrabbleScore/input/10 - Combo.txt +74 -0
  658. package/config/easy/ScrabbleScore/input/11 - Blank is important.txt +74 -0
  659. package/config/easy/ScrabbleScore/input/12 - Multiple multiplicator 2.txt +73 -0
  660. package/config/easy/ScrabbleScore/input/13 - First word.txt +74 -0
  661. package/config/easy/ScrabbleScore/input/14 - First word.txt +49 -0
  662. package/config/easy/ScrabbleScore/output/01 - Easy.txt +2 -0
  663. package/config/easy/ScrabbleScore/output/02 - Double letter score.txt +2 -0
  664. package/config/easy/ScrabbleScore/output/03 - Triple letter score.txt +2 -0
  665. package/config/easy/ScrabbleScore/output/04 - Double word score.txt +2 -0
  666. package/config/easy/ScrabbleScore/output/05 - Triple word score.txt +3 -0
  667. package/config/easy/ScrabbleScore/output/06 - Multiple multiplicator.txt +2 -0
  668. package/config/easy/ScrabbleScore/output/07 - Count the 2 words.txt +3 -0
  669. package/config/easy/ScrabbleScore/output/08 - Special cell on 2 words.txt +3 -0
  670. package/config/easy/ScrabbleScore/output/09 - Special cell on 2 words.txt +2 -0
  671. package/config/easy/ScrabbleScore/output/10 - Combo.txt +5 -0
  672. package/config/easy/ScrabbleScore/output/11 - Blank is important.txt +2 -0
  673. package/config/easy/ScrabbleScore/output/12 - Multiple multiplicator 2.txt +3 -0
  674. package/config/easy/ScrabbleScore/output/13 - First word.txt +3 -0
  675. package/config/easy/ScrabbleScore/output/14 - First word.txt +7 -0
  676. package/config/easy/ShootEnemyAircraft/code/CGCode.js +10 -0
  677. package/config/easy/ShootEnemyAircraft/code/CGCode.php +12 -0
  678. package/config/easy/ShootEnemyAircraft/config.json +28 -0
  679. package/config/easy/ShootEnemyAircraft/input/01 - One aircraft on each side.txt +7 -0
  680. package/config/easy/ShootEnemyAircraft/input/02 - Three on the same side.txt +7 -0
  681. package/config/easy/ShootEnemyAircraft/input/03 - Hold the line.txt +3 -0
  682. package/config/easy/ShootEnemyAircraft/input/04 - Don/342/200/231t panic.txt" +11 -0
  683. package/config/easy/ShootEnemyAircraft/output/01 - One aircraft on each side.txt +7 -0
  684. package/config/easy/ShootEnemyAircraft/output/02 - Three on the same side.txt +6 -0
  685. package/config/easy/ShootEnemyAircraft/output/03 - Hold the line.txt +29 -0
  686. package/config/easy/ShootEnemyAircraft/output/04 - Don/342/200/231t panic.txt" +29 -0
  687. package/config/easy/ShouldBakersBeFrugal/code/CGCode.js +8 -0
  688. package/config/easy/ShouldBakersBeFrugal/code/CGCode.php +7 -0
  689. package/config/easy/ShouldBakersBeFrugal/config.json +78 -0
  690. package/config/easy/ShouldBakersBeFrugal/input/01 - Basic.txt +1 -0
  691. package/config/easy/ShouldBakersBeFrugal/input/02 - Another Basic.txt +1 -0
  692. package/config/easy/ShouldBakersBeFrugal/input/03 - What IS the benefit.txt +1 -0
  693. package/config/easy/ShouldBakersBeFrugal/input/04 - Not perfectly divisible.txt +1 -0
  694. package/config/easy/ShouldBakersBeFrugal/input/05 - Real Biscuits.txt +1 -0
  695. package/config/easy/ShouldBakersBeFrugal/input/06 - So wasteful.txt +1 -0
  696. package/config/easy/ShouldBakersBeFrugal/input/07 - Squeeze out the extras.txt +1 -0
  697. package/config/easy/ShouldBakersBeFrugal/input/08 - So many biscuits.txt +1 -0
  698. package/config/easy/ShouldBakersBeFrugal/input/09 - Who kneads that.txt +1 -0
  699. package/config/easy/ShouldBakersBeFrugal/input/10 - Them Biscuits are Big.txt +1 -0
  700. package/config/easy/ShouldBakersBeFrugal/input/11 - Big Payoff.txt +1 -0
  701. package/config/easy/ShouldBakersBeFrugal/input/12 - Now my hand hurts.txt +1 -0
  702. package/config/easy/ShouldBakersBeFrugal/input/13 - Micro World.txt +1 -0
  703. package/config/easy/ShouldBakersBeFrugal/input/14 - A gazillion micro-biscuits.txt +1 -0
  704. package/config/easy/ShouldBakersBeFrugal/output/01 - Basic.txt +1 -0
  705. package/config/easy/ShouldBakersBeFrugal/output/02 - Another Basic.txt +1 -0
  706. package/config/easy/ShouldBakersBeFrugal/output/03 - What IS the benefit.txt +1 -0
  707. package/config/easy/ShouldBakersBeFrugal/output/04 - Not perfectly divisible.txt +1 -0
  708. package/config/easy/ShouldBakersBeFrugal/output/05 - Real Biscuits.txt +1 -0
  709. package/config/easy/ShouldBakersBeFrugal/output/06 - So wasteful.txt +1 -0
  710. package/config/easy/ShouldBakersBeFrugal/output/07 - Squeeze out the extras.txt +1 -0
  711. package/config/easy/ShouldBakersBeFrugal/output/08 - So many biscuits.txt +1 -0
  712. package/config/easy/ShouldBakersBeFrugal/output/09 - Who kneads that.txt +1 -0
  713. package/config/easy/ShouldBakersBeFrugal/output/10 - Them Biscuits are Big.txt +1 -0
  714. package/config/easy/ShouldBakersBeFrugal/output/11 - Big Payoff.txt +1 -0
  715. package/config/easy/ShouldBakersBeFrugal/output/12 - Now my hand hurts.txt +1 -0
  716. package/config/easy/ShouldBakersBeFrugal/output/13 - Micro World.txt +1 -0
  717. package/config/easy/ShouldBakersBeFrugal/output/14 - A gazillion micro-biscuits.txt +1 -0
  718. package/config/easy/SixDegreesOfKevinBacon/code/CGCode.js +10 -0
  719. package/config/easy/SixDegreesOfKevinBacon/code/CGCode.php +12 -0
  720. package/config/easy/SixDegreesOfKevinBacon/config.json +38 -0
  721. package/config/easy/SixDegreesOfKevinBacon/input/01 - 2 Degrees of Kevin Bacon.txt +5 -0
  722. package/config/easy/SixDegreesOfKevinBacon/input/02 - One Degree of Kevin Bacon.txt +5 -0
  723. package/config/easy/SixDegreesOfKevinBacon/input/03 - 3 Degrees of Kevin Bacon.txt +7 -0
  724. package/config/easy/SixDegreesOfKevinBacon/input/04 - Kevin Bacon Himself!.txt +6 -0
  725. package/config/easy/SixDegreesOfKevinBacon/input/05 - Going big!.txt +12 -0
  726. package/config/easy/SixDegreesOfKevinBacon/input/06 - The Biggest.txt +42 -0
  727. package/config/easy/SixDegreesOfKevinBacon/output/01 - 2 Degrees of Kevin Bacon.txt +1 -0
  728. package/config/easy/SixDegreesOfKevinBacon/output/02 - One Degree of Kevin Bacon.txt +1 -0
  729. package/config/easy/SixDegreesOfKevinBacon/output/03 - 3 Degrees of Kevin Bacon.txt +1 -0
  730. package/config/easy/SixDegreesOfKevinBacon/output/04 - Kevin Bacon Himself!.txt +1 -0
  731. package/config/easy/SixDegreesOfKevinBacon/output/05 - Going big!.txt +1 -0
  732. package/config/easy/SixDegreesOfKevinBacon/output/06 - The Biggest.txt +1 -0
  733. package/config/easy/SnakeSort2D/code/CGCode.js +12 -0
  734. package/config/easy/SnakeSort2D/code/CGCode.php +11 -0
  735. package/config/easy/SnakeSort2D/config.json +28 -0
  736. package/config/easy/SnakeSort2D/input/01 - test 1.txt +5 -0
  737. package/config/easy/SnakeSort2D/input/02 - test 2.txt +27 -0
  738. package/config/easy/SnakeSort2D/input/03 - test 3.txt +27 -0
  739. package/config/easy/SnakeSort2D/input/04 - test 4.txt +27 -0
  740. package/config/easy/SnakeSort2D/output/01 - test 1.txt +1 -0
  741. package/config/easy/SnakeSort2D/output/02 - test 2.txt +1 -0
  742. package/config/easy/SnakeSort2D/output/03 - test 3.txt +1 -0
  743. package/config/easy/SnakeSort2D/output/04 - test 4.txt +1 -0
  744. package/config/easy/SquareSpiralForAlienContact/code/CGCode.js +6 -0
  745. package/config/easy/SquareSpiralForAlienContact/code/CGCode.php +7 -0
  746. package/config/easy/SquareSpiralForAlienContact/config.json +128 -0
  747. package/config/easy/SquareSpiralForAlienContact/input/01 - Test 1 = letter+ and #same, cw.txt +1 -0
  748. package/config/easy/SquareSpiralForAlienContact/input/02 - Test 2 = letter+ and #same, ccw.txt +1 -0
  749. package/config/easy/SquareSpiralForAlienContact/input/03 - Test 3 = letter++ and #same, cw.txt +1 -0
  750. package/config/easy/SquareSpiralForAlienContact/input/04 - Test 4 = letter++ and #same, ccw.txt +1 -0
  751. package/config/easy/SquareSpiralForAlienContact/input/05 - Test 5 = letter+ and #+, cw.txt +1 -0
  752. package/config/easy/SquareSpiralForAlienContact/input/06 - Test 6 = letter+ and #+, ccw.txt +1 -0
  753. package/config/easy/SquareSpiralForAlienContact/input/07 - Test 7 = letter+ and #++, cw.txt +1 -0
  754. package/config/easy/SquareSpiralForAlienContact/input/08 - Test 8 = letter+ and #++, ccw.txt +1 -0
  755. package/config/easy/SquareSpiralForAlienContact/input/09 - Test 9 = letter++ and #+, cw.txt +1 -0
  756. package/config/easy/SquareSpiralForAlienContact/input/10 - Test 10 = letter++ and #+, ccw.txt +1 -0
  757. package/config/easy/SquareSpiralForAlienContact/input/11 - Test 11 = letter++ and #++, cw.txt +1 -0
  758. package/config/easy/SquareSpiralForAlienContact/input/12 - Test 12 = letter++ and #++, ccw.txt +1 -0
  759. package/config/easy/SquareSpiralForAlienContact/input/13 - Test 13 = letter- and #+, cw.txt +1 -0
  760. package/config/easy/SquareSpiralForAlienContact/input/14 - Test 14 = letter- and #+, ccw.txt +1 -0
  761. package/config/easy/SquareSpiralForAlienContact/input/15 - Test 15 = letter-- and #++, cw.txt +1 -0
  762. package/config/easy/SquareSpiralForAlienContact/input/16 - Test 16 = letter-- and #++, ccw.txt +1 -0
  763. package/config/easy/SquareSpiralForAlienContact/input/17 - Test 17 = letter+ and #-, cw.txt +1 -0
  764. package/config/easy/SquareSpiralForAlienContact/input/18 - Test 18 = letter+ and #-, ccw.txt +1 -0
  765. package/config/easy/SquareSpiralForAlienContact/input/19 - Test 19 = letter-- and #--, cw.txt +1 -0
  766. package/config/easy/SquareSpiralForAlienContact/input/20 - Test 20 = letter-- and #--, ccw.txt +1 -0
  767. package/config/easy/SquareSpiralForAlienContact/input/21 - Test 21 = whoa, that/342/200/231s not enough material, cw.txt" +1 -0
  768. package/config/easy/SquareSpiralForAlienContact/input/22 - Test 22 - whoa, that's not enough material, ccw.txt +1 -0
  769. package/config/easy/SquareSpiralForAlienContact/input/23 - Test 23 = oversized.txt +1 -0
  770. package/config/easy/SquareSpiralForAlienContact/input/24 - Test 24 = very oversized.txt +1 -0
  771. package/config/easy/SquareSpiralForAlienContact/output/01 - Test 1 = letter+ and #same, cw.txt +9 -0
  772. package/config/easy/SquareSpiralForAlienContact/output/02 - Test 2 = letter+ and #same, ccw.txt +11 -0
  773. package/config/easy/SquareSpiralForAlienContact/output/03 - Test 3 = letter++ and #same, cw.txt +19 -0
  774. package/config/easy/SquareSpiralForAlienContact/output/04 - Test 4 = letter++ and #same, ccw.txt +9 -0
  775. package/config/easy/SquareSpiralForAlienContact/output/05 - Test 5 = letter+ and #+, cw.txt +19 -0
  776. package/config/easy/SquareSpiralForAlienContact/output/06 - Test 6 = letter+ and #+, ccw.txt +15 -0
  777. package/config/easy/SquareSpiralForAlienContact/output/07 - Test 7 = letter+ and #++, cw.txt +15 -0
  778. package/config/easy/SquareSpiralForAlienContact/output/08 - Test 8 = letter+ and #++, ccw.txt +11 -0
  779. package/config/easy/SquareSpiralForAlienContact/output/09 - Test 9 = letter++ and #+, cw.txt +9 -0
  780. package/config/easy/SquareSpiralForAlienContact/output/10 - Test 10 = letter++ and #+, ccw.txt +25 -0
  781. package/config/easy/SquareSpiralForAlienContact/output/11 - Test 11 = letter++ and #++, cw.txt +7 -0
  782. package/config/easy/SquareSpiralForAlienContact/output/12 - Test 12 = letter++ and #++, ccw.txt +21 -0
  783. package/config/easy/SquareSpiralForAlienContact/output/13 - Test 13 = letter- and #+, cw.txt +21 -0
  784. package/config/easy/SquareSpiralForAlienContact/output/14 - Test 14 = letter- and #+, ccw.txt +25 -0
  785. package/config/easy/SquareSpiralForAlienContact/output/15 - Test 15 = letter-- and #++, cw.txt +19 -0
  786. package/config/easy/SquareSpiralForAlienContact/output/16 - Test 16 = letter-- and #++, ccw.txt +11 -0
  787. package/config/easy/SquareSpiralForAlienContact/output/17 - Test 17 = letter+ and #-, cw.txt +17 -0
  788. package/config/easy/SquareSpiralForAlienContact/output/18 - Test 18 = letter+ and #-, ccw.txt +21 -0
  789. package/config/easy/SquareSpiralForAlienContact/output/19 - Test 19 = letter-- and #--, cw.txt +5 -0
  790. package/config/easy/SquareSpiralForAlienContact/output/20 - Test 20 = letter-- and #--, ccw.txt +29 -0
  791. package/config/easy/SquareSpiralForAlienContact/output/21 - Test 21 = whoa, that/342/200/231s not enough material, cw.txt" +29 -0
  792. package/config/easy/SquareSpiralForAlienContact/output/22 - Test 22 - whoa, that's not enough material, ccw.txt +25 -0
  793. package/config/easy/SquareSpiralForAlienContact/output/23 - Test 23 = oversized.txt +31 -0
  794. package/config/easy/SquareSpiralForAlienContact/output/24 - Test 24 = very oversized.txt +31 -0
  795. package/config/easy/StreetFighterLevelI/code/CGCode.js +14 -0
  796. package/config/easy/StreetFighterLevelI/code/CGCode.php +12 -0
  797. package/config/easy/StreetFighterLevelI/config.json +58 -0
  798. package/config/easy/StreetFighterLevelI/input/01 - KEN vs RYU.txt +6 -0
  799. package/config/easy/StreetFighterLevelI/input/02 - KEN vs VLAD Kick only.txt +12 -0
  800. package/config/easy/StreetFighterLevelI/input/03 - ANNA vs JUN Punch only.txt +12 -0
  801. package/config/easy/StreetFighterLevelI/input/04 - TANK vs JADE punch & kick.txt +12 -0
  802. package/config/easy/StreetFighterLevelI/input/05 - VLAD vs JUN Specials.txt +14 -0
  803. package/config/easy/StreetFighterLevelI/input/06 - KEN vs TANK Specials.txt +16 -0
  804. package/config/easy/StreetFighterLevelI/input/07 - VLAD vs RYU Special VLAD Kill.txt +16 -0
  805. package/config/easy/StreetFighterLevelI/input/08 - JUN vs KEN long story.txt +32 -0
  806. package/config/easy/StreetFighterLevelI/input/09 - ANNA vs JADE round 1.txt +32 -0
  807. package/config/easy/StreetFighterLevelI/input/10 - ANNA vs JADE.txt +32 -0
  808. package/config/easy/StreetFighterLevelI/output/01 - KEN vs RYU.txt +1 -0
  809. package/config/easy/StreetFighterLevelI/output/02 - KEN vs VLAD Kick only.txt +1 -0
  810. package/config/easy/StreetFighterLevelI/output/03 - ANNA vs JUN Punch only.txt +1 -0
  811. package/config/easy/StreetFighterLevelI/output/04 - TANK vs JADE punch & kick.txt +1 -0
  812. package/config/easy/StreetFighterLevelI/output/05 - VLAD vs JUN Specials.txt +1 -0
  813. package/config/easy/StreetFighterLevelI/output/06 - KEN vs TANK Specials.txt +1 -0
  814. package/config/easy/StreetFighterLevelI/output/07 - VLAD vs RYU Special VLAD Kill.txt +1 -0
  815. package/config/easy/StreetFighterLevelI/output/08 - JUN vs KEN long story.txt +1 -0
  816. package/config/easy/StreetFighterLevelI/output/09 - ANNA vs JADE round 1.txt +1 -0
  817. package/config/easy/StreetFighterLevelI/output/10 - ANNA vs JADE.txt +1 -0
  818. package/config/easy/SwatchInternetTime/code/CGCode.js +6 -0
  819. package/config/easy/SwatchInternetTime/code/CGCode.php +7 -0
  820. package/config/easy/SwatchInternetTime/config.json +58 -0
  821. package/config/easy/SwatchInternetTime/input/01 - At UTC+0100.txt +1 -0
  822. package/config/easy/SwatchInternetTime/input/02 - At UTC+0100, with decimals.txt +1 -0
  823. package/config/easy/SwatchInternetTime/input/03 - At other positive timezones.txt +1 -0
  824. package/config/easy/SwatchInternetTime/input/04 - At negative timezones.txt +1 -0
  825. package/config/easy/SwatchInternetTime/input/05 - At positive timezones with minutes.txt +1 -0
  826. package/config/easy/SwatchInternetTime/input/06 - At negative timezones with minutes.txt +1 -0
  827. package/config/easy/SwatchInternetTime/input/07 - With half-up rounding (odd).txt +1 -0
  828. package/config/easy/SwatchInternetTime/input/08 - With half-up rounding (even).txt +1 -0
  829. package/config/easy/SwatchInternetTime/input/09 - Loop.txt +1 -0
  830. package/config/easy/SwatchInternetTime/input/10 - From Amsterdam with love.txt +1 -0
  831. package/config/easy/SwatchInternetTime/output/01 - At UTC+0100.txt +1 -0
  832. package/config/easy/SwatchInternetTime/output/02 - At UTC+0100, with decimals.txt +1 -0
  833. package/config/easy/SwatchInternetTime/output/03 - At other positive timezones.txt +1 -0
  834. package/config/easy/SwatchInternetTime/output/04 - At negative timezones.txt +1 -0
  835. package/config/easy/SwatchInternetTime/output/05 - At positive timezones with minutes.txt +1 -0
  836. package/config/easy/SwatchInternetTime/output/06 - At negative timezones with minutes.txt +1 -0
  837. package/config/easy/SwatchInternetTime/output/07 - With half-up rounding (odd).txt +1 -0
  838. package/config/easy/SwatchInternetTime/output/08 - With half-up rounding (even).txt +1 -0
  839. package/config/easy/SwatchInternetTime/output/09 - Loop.txt +1 -0
  840. package/config/easy/SwatchInternetTime/output/10 - From Amsterdam with love.txt +1 -0
  841. package/config/easy/TableOfContents/code/CGCode.js +10 -0
  842. package/config/easy/TableOfContents/code/CGCode.php +12 -0
  843. package/config/easy/TableOfContents/config.json +28 -0
  844. package/config/easy/TableOfContents/input/01 - Test.txt +7 -0
  845. package/config/easy/TableOfContents/input/02 - Numbers.txt +12 -0
  846. package/config/easy/TableOfContents/input/03 - Hell of subsections.txt +20 -0
  847. package/config/easy/TableOfContents/input/04 - World book.txt +15 -0
  848. package/config/easy/TableOfContents/output/01 - Test.txt +5 -0
  849. package/config/easy/TableOfContents/output/02 - Numbers.txt +10 -0
  850. package/config/easy/TableOfContents/output/03 - Hell of subsections.txt +18 -0
  851. package/config/easy/TableOfContents/output/04 - World book.txt +13 -0
  852. package/config/easy/TabloidCoupleNames/code/CGCode.js +9 -0
  853. package/config/easy/TabloidCoupleNames/code/CGCode.php +11 -0
  854. package/config/easy/TabloidCoupleNames/config.json +128 -0
  855. package/config/easy/TabloidCoupleNames/input/01 - Classics.txt +7 -0
  856. package/config/easy/TabloidCoupleNames/input/02 - You have options.txt +7 -0
  857. package/config/easy/TabloidCoupleNames/input/03 - Lots of Options.txt +5 -0
  858. package/config/easy/TabloidCoupleNames/input/04 - Is that really your person.txt +6 -0
  859. package/config/easy/TabloidCoupleNames/input/05 - Fun Couples.txt +16 -0
  860. package/config/easy/TabloidCoupleNames/input/06 - test 6.txt +8 -0
  861. package/config/easy/TabloidCoupleNames/input/07 - test 7.txt +8 -0
  862. package/config/easy/TabloidCoupleNames/input/08 - test 8.txt +6 -0
  863. package/config/easy/TabloidCoupleNames/input/09 - test 9.txt +6 -0
  864. package/config/easy/TabloidCoupleNames/input/10 - Three-Overlap-Letters.txt +6 -0
  865. package/config/easy/TabloidCoupleNames/input/11 - test 11.txt +8 -0
  866. package/config/easy/TabloidCoupleNames/input/12 - test 12.txt +9 -0
  867. package/config/easy/TabloidCoupleNames/input/13 - test 13.txt +8 -0
  868. package/config/easy/TabloidCoupleNames/input/14 - Carrie Bradshaw Plus 1.txt +10 -0
  869. package/config/easy/TabloidCoupleNames/input/15 - test 15.txt +11 -0
  870. package/config/easy/TabloidCoupleNames/input/16 - test 16.txt +10 -0
  871. package/config/easy/TabloidCoupleNames/input/17 - test 17.txt +9 -0
  872. package/config/easy/TabloidCoupleNames/input/18 - So many options.txt +3 -0
  873. package/config/easy/TabloidCoupleNames/input/19 - test 19.txt +7 -0
  874. package/config/easy/TabloidCoupleNames/input/20 - Musical.txt +16 -0
  875. package/config/easy/TabloidCoupleNames/input/21 - Scandalous.txt +11 -0
  876. package/config/easy/TabloidCoupleNames/input/22 - OITNB and L-Word.txt +14 -0
  877. package/config/easy/TabloidCoupleNames/input/23 - So much overlap.txt +8 -0
  878. package/config/easy/TabloidCoupleNames/input/24 - I am not Us.txt +3 -0
  879. package/config/easy/TabloidCoupleNames/output/01 - Classics.txt +6 -0
  880. package/config/easy/TabloidCoupleNames/output/02 - You have options.txt +6 -0
  881. package/config/easy/TabloidCoupleNames/output/03 - Lots of Options.txt +4 -0
  882. package/config/easy/TabloidCoupleNames/output/04 - Is that really your person.txt +5 -0
  883. package/config/easy/TabloidCoupleNames/output/05 - Fun Couples.txt +15 -0
  884. package/config/easy/TabloidCoupleNames/output/06 - test 6.txt +7 -0
  885. package/config/easy/TabloidCoupleNames/output/07 - test 7.txt +7 -0
  886. package/config/easy/TabloidCoupleNames/output/08 - test 8.txt +5 -0
  887. package/config/easy/TabloidCoupleNames/output/09 - test 9.txt +5 -0
  888. package/config/easy/TabloidCoupleNames/output/10 - Three-Overlap-Letters.txt +5 -0
  889. package/config/easy/TabloidCoupleNames/output/11 - test 11.txt +7 -0
  890. package/config/easy/TabloidCoupleNames/output/12 - test 12.txt +8 -0
  891. package/config/easy/TabloidCoupleNames/output/13 - test 13.txt +7 -0
  892. package/config/easy/TabloidCoupleNames/output/14 - Carrie Bradshaw Plus 1.txt +9 -0
  893. package/config/easy/TabloidCoupleNames/output/15 - test 15.txt +10 -0
  894. package/config/easy/TabloidCoupleNames/output/16 - test 16.txt +9 -0
  895. package/config/easy/TabloidCoupleNames/output/17 - test 17.txt +8 -0
  896. package/config/easy/TabloidCoupleNames/output/18 - So many options.txt +2 -0
  897. package/config/easy/TabloidCoupleNames/output/19 - test 19.txt +6 -0
  898. package/config/easy/TabloidCoupleNames/output/20 - Musical.txt +15 -0
  899. package/config/easy/TabloidCoupleNames/output/21 - Scandalous.txt +10 -0
  900. package/config/easy/TabloidCoupleNames/output/22 - OITNB and L-Word.txt +13 -0
  901. package/config/easy/TabloidCoupleNames/output/23 - So much overlap.txt +7 -0
  902. package/config/easy/TabloidCoupleNames/output/24 - I am not Us.txt +2 -0
  903. package/config/easy/TheLeakingBathtub/code/CGCode.js +14 -0
  904. package/config/easy/TheLeakingBathtub/code/CGCode.php +14 -0
  905. package/config/easy/TheLeakingBathtub/config.json +33 -0
  906. package/config/easy/TheLeakingBathtub/input/01 - Standard bathtub.txt +6 -0
  907. package/config/easy/TheLeakingBathtub/input/02 - More leaks.txt +54 -0
  908. package/config/easy/TheLeakingBathtub/input/03 - Unfillable bathtub.txt +17 -0
  909. package/config/easy/TheLeakingBathtub/input/04 - No leak.txt +4 -0
  910. package/config/easy/TheLeakingBathtub/input/05 - Olympic swimming pool.txt +875 -0
  911. package/config/easy/TheLeakingBathtub/output/01 - Standard bathtub.txt +1 -0
  912. package/config/easy/TheLeakingBathtub/output/02 - More leaks.txt +1 -0
  913. package/config/easy/TheLeakingBathtub/output/03 - Unfillable bathtub.txt +1 -0
  914. package/config/easy/TheLeakingBathtub/output/04 - No leak.txt +1 -0
  915. package/config/easy/TheLeakingBathtub/output/05 - Olympic swimming pool.txt +1 -0
  916. package/config/easy/TheLogoBeyondCppAndCs/code/CGCode.js +11 -0
  917. package/config/easy/TheLogoBeyondCppAndCs/code/CGCode.php +13 -0
  918. package/config/easy/TheLogoBeyondCppAndCs/config.json +123 -0
  919. package/config/easy/TheLogoBeyondCppAndCs/input/01 - C Sharp Plus Test 1.txt +5 -0
  920. package/config/easy/TheLogoBeyondCppAndCs/input/02 - C Venn Test 2.txt +6 -0
  921. package/config/easy/TheLogoBeyondCppAndCs/input/03 - C Plus Plus and Plus Test 3.txt +6 -0
  922. package/config/easy/TheLogoBeyondCppAndCs/input/04 - C-hi Test 4.txt +6 -0
  923. package/config/easy/TheLogoBeyondCppAndCs/input/05 - C Climb Test 5.txt +6 -0
  924. package/config/easy/TheLogoBeyondCppAndCs/input/06 - C-Cliff Test 6.txt +6 -0
  925. package/config/easy/TheLogoBeyondCppAndCs/input/07 - C-X Test 7.txt +6 -0
  926. package/config/easy/TheLogoBeyondCppAndCs/input/08 - Tic Tac C Test 8.txt +6 -0
  927. package/config/easy/TheLogoBeyondCppAndCs/input/09 - C-Check Test 9.txt +7 -0
  928. package/config/easy/TheLogoBeyondCppAndCs/input/10 - C-Checkers Test 10.txt +7 -0
  929. package/config/easy/TheLogoBeyondCppAndCs/input/11 - C Sharp Sharp Test 11.txt +5 -0
  930. package/config/easy/TheLogoBeyondCppAndCs/input/12 - C Sharp Plus Sharp Test 12.txt +6 -0
  931. package/config/easy/TheLogoBeyondCppAndCs/input/13 - C Pyramid Test 13.txt +6 -0
  932. package/config/easy/TheLogoBeyondCppAndCs/input/14 - Greater Than C Test 14.txt +8 -0
  933. package/config/easy/TheLogoBeyondCppAndCs/input/15 - Giant C Test 15.txt +4 -0
  934. package/config/easy/TheLogoBeyondCppAndCs/input/16 - One Thick C Test 16.txt +4 -0
  935. package/config/easy/TheLogoBeyondCppAndCs/input/17 - C-U Test 17.txt +8 -0
  936. package/config/easy/TheLogoBeyondCppAndCs/input/18 - You can C forever Test 18.txt +23 -0
  937. package/config/easy/TheLogoBeyondCppAndCs/input/19 - I C U Test 19.txt +14 -0
  938. package/config/easy/TheLogoBeyondCppAndCs/input/20 - C-Nake (Snake) Test 20.txt +14 -0
  939. package/config/easy/TheLogoBeyondCppAndCs/input/21 - C-Legs Test 21.txt +7 -0
  940. package/config/easy/TheLogoBeyondCppAndCs/input/22 - C You Tuesday Test 22.txt +8 -0
  941. package/config/easy/TheLogoBeyondCppAndCs/input/23 - C-Man Test 23.txt +7 -0
  942. package/config/easy/TheLogoBeyondCppAndCs/output/01 - C Sharp Plus Test 1.txt +26 -0
  943. package/config/easy/TheLogoBeyondCppAndCs/output/02 - C Venn Test 2.txt +33 -0
  944. package/config/easy/TheLogoBeyondCppAndCs/output/03 - C Plus Plus and Plus Test 3.txt +36 -0
  945. package/config/easy/TheLogoBeyondCppAndCs/output/04 - C-hi Test 4.txt +27 -0
  946. package/config/easy/TheLogoBeyondCppAndCs/output/05 - C Climb Test 5.txt +39 -0
  947. package/config/easy/TheLogoBeyondCppAndCs/output/06 - C-Cliff Test 6.txt +30 -0
  948. package/config/easy/TheLogoBeyondCppAndCs/output/07 - C-X Test 7.txt +21 -0
  949. package/config/easy/TheLogoBeyondCppAndCs/output/08 - Tic Tac C Test 8.txt +30 -0
  950. package/config/easy/TheLogoBeyondCppAndCs/output/09 - C-Check Test 9.txt +32 -0
  951. package/config/easy/TheLogoBeyondCppAndCs/output/10 - C-Checkers Test 10.txt +36 -0
  952. package/config/easy/TheLogoBeyondCppAndCs/output/11 - C Sharp Sharp Test 11.txt +18 -0
  953. package/config/easy/TheLogoBeyondCppAndCs/output/12 - C Sharp Plus Sharp Test 12.txt +27 -0
  954. package/config/easy/TheLogoBeyondCppAndCs/output/13 - C Pyramid Test 13.txt +24 -0
  955. package/config/easy/TheLogoBeyondCppAndCs/output/14 - Greater Than C Test 14.txt +50 -0
  956. package/config/easy/TheLogoBeyondCppAndCs/output/15 - Giant C Test 15.txt +31 -0
  957. package/config/easy/TheLogoBeyondCppAndCs/output/16 - One Thick C Test 16.txt +30 -0
  958. package/config/easy/TheLogoBeyondCppAndCs/output/17 - C-U Test 17.txt +35 -0
  959. package/config/easy/TheLogoBeyondCppAndCs/output/18 - You can C forever Test 18.txt +140 -0
  960. package/config/easy/TheLogoBeyondCppAndCs/output/19 - I C U Test 19.txt +15 -0
  961. package/config/easy/TheLogoBeyondCppAndCs/output/20 - C-Nake (Snake) Test 20.txt +77 -0
  962. package/config/easy/TheLogoBeyondCppAndCs/output/21 - C-Legs Test 21.txt +28 -0
  963. package/config/easy/TheLogoBeyondCppAndCs/output/22 - C You Tuesday Test 22.txt +40 -0
  964. package/config/easy/TheLogoBeyondCppAndCs/output/23 - C-Man Test 23.txt +28 -0
  965. package/config/easy/TheOtherSide/code/CGCode.js +10 -0
  966. package/config/easy/TheOtherSide/code/CGCode.php +12 -0
  967. package/config/easy/TheOtherSide/config.json +53 -0
  968. package/config/easy/TheOtherSide/input/01 - Direct path.txt +4 -0
  969. package/config/easy/TheOtherSide/input/02 - Nowhere to stand.txt +4 -0
  970. package/config/easy/TheOtherSide/input/03 - Fully horizontal path.txt +5 -0
  971. package/config/easy/TheOtherSide/input/04 - Stalemate.txt +5 -0
  972. package/config/easy/TheOtherSide/input/05 - Zigzag.txt +7 -0
  973. package/config/easy/TheOtherSide/input/06 - No way.txt +6 -0
  974. package/config/easy/TheOtherSide/input/07 - One step back.txt +9 -0
  975. package/config/easy/TheOtherSide/input/08 - No diagonal moves.txt +4 -0
  976. package/config/easy/TheOtherSide/input/09 - The other side.txt +14 -0
  977. package/config/easy/TheOtherSide/output/01 - Direct path.txt +1 -0
  978. package/config/easy/TheOtherSide/output/02 - Nowhere to stand.txt +1 -0
  979. package/config/easy/TheOtherSide/output/03 - Fully horizontal path.txt +1 -0
  980. package/config/easy/TheOtherSide/output/04 - Stalemate.txt +1 -0
  981. package/config/easy/TheOtherSide/output/05 - Zigzag.txt +1 -0
  982. package/config/easy/TheOtherSide/output/06 - No way.txt +1 -0
  983. package/config/easy/TheOtherSide/output/07 - One step back.txt +1 -0
  984. package/config/easy/TheOtherSide/output/08 - No diagonal moves.txt +1 -0
  985. package/config/easy/TheOtherSide/output/09 - The other side.txt +1 -0
  986. package/config/easy/TheWeightOfWords/code/CGCode.js +13 -0
  987. package/config/easy/TheWeightOfWords/code/CGCode.php +16 -0
  988. package/config/easy/TheWeightOfWords/config.json +28 -0
  989. package/config/easy/TheWeightOfWords/input/01 - test 1.txt +5 -0
  990. package/config/easy/TheWeightOfWords/input/02 - test 2.txt +10 -0
  991. package/config/easy/TheWeightOfWords/input/03 - test 3.txt +19 -0
  992. package/config/easy/TheWeightOfWords/input/04 - test 4.txt +19 -0
  993. package/config/easy/TheWeightOfWords/output/01 - test 1.txt +2 -0
  994. package/config/easy/TheWeightOfWords/output/02 - test 2.txt +7 -0
  995. package/config/easy/TheWeightOfWords/output/03 - test 3.txt +16 -0
  996. package/config/easy/TheWeightOfWords/output/04 - test 4.txt +16 -0
  997. package/config/easy/TileAFloor/code/CGCode.js +9 -0
  998. package/config/easy/TileAFloor/code/CGCode.php +11 -0
  999. package/config/easy/TileAFloor/config.json +133 -0
  1000. package/config/easy/TileAFloor/input/01 - No special mirrors Test 1.txt +4 -0
  1001. package/config/easy/TileAFloor/input/02 - WM Test 2.txt +5 -0
  1002. package/config/easy/TileAFloor/input/03 - test 3.txt +5 -0
  1003. package/config/easy/TileAFloor/input/04 - Diags Test 4.txt +6 -0
  1004. package/config/easy/TileAFloor/input/05 - nu and ][ Test 5.txt +4 -0
  1005. package/config/easy/TileAFloor/input/06 - AV and slashes Test 6.txt +5 -0
  1006. package/config/easy/TileAFloor/input/07 - (()) and slashes Test 7.txt +5 -0
  1007. package/config/easy/TileAFloor/input/08 - Everything Test 8.txt +7 -0
  1008. package/config/easy/TileAFloor/input/09 - test 9.txt +6 -0
  1009. package/config/easy/TileAFloor/input/10 - test 10.txt +8 -0
  1010. package/config/easy/TileAFloor/input/11 - test 11.txt +7 -0
  1011. package/config/easy/TileAFloor/input/12 - test 12.txt +7 -0
  1012. package/config/easy/TileAFloor/input/13 - test 13.txt +7 -0
  1013. package/config/easy/TileAFloor/input/14 - test 14.txt +8 -0
  1014. package/config/easy/TileAFloor/input/15 - test 15.txt +6 -0
  1015. package/config/easy/TileAFloor/input/16 - test 16.txt +7 -0
  1016. package/config/easy/TileAFloor/input/17 - test 17.txt +5 -0
  1017. package/config/easy/TileAFloor/input/18 - test 18.txt +6 -0
  1018. package/config/easy/TileAFloor/input/19 - test 19.txt +6 -0
  1019. package/config/easy/TileAFloor/input/20 - test 20.txt +4 -0
  1020. package/config/easy/TileAFloor/input/21 - test 21.txt +8 -0
  1021. package/config/easy/TileAFloor/input/22 - test 22.txt +4 -0
  1022. package/config/easy/TileAFloor/input/23 - test 23.txt +6 -0
  1023. package/config/easy/TileAFloor/input/24 - test 24.txt +5 -0
  1024. package/config/easy/TileAFloor/input/25 - test 25.txt +5 -0
  1025. package/config/easy/TileAFloor/output/01 - No special mirrors Test 1.txt +13 -0
  1026. package/config/easy/TileAFloor/output/02 - WM Test 2.txt +17 -0
  1027. package/config/easy/TileAFloor/output/03 - test 3.txt +17 -0
  1028. package/config/easy/TileAFloor/output/04 - Diags Test 4.txt +21 -0
  1029. package/config/easy/TileAFloor/output/05 - nu and ][ Test 5.txt +13 -0
  1030. package/config/easy/TileAFloor/output/06 - AV and slashes Test 6.txt +17 -0
  1031. package/config/easy/TileAFloor/output/07 - (()) and slashes Test 7.txt +17 -0
  1032. package/config/easy/TileAFloor/output/08 - Everything Test 8.txt +25 -0
  1033. package/config/easy/TileAFloor/output/09 - test 9.txt +21 -0
  1034. package/config/easy/TileAFloor/output/10 - test 10.txt +29 -0
  1035. package/config/easy/TileAFloor/output/11 - test 11.txt +25 -0
  1036. package/config/easy/TileAFloor/output/12 - test 12.txt +25 -0
  1037. package/config/easy/TileAFloor/output/13 - test 13.txt +25 -0
  1038. package/config/easy/TileAFloor/output/14 - test 14.txt +29 -0
  1039. package/config/easy/TileAFloor/output/15 - test 15.txt +21 -0
  1040. package/config/easy/TileAFloor/output/16 - test 16.txt +25 -0
  1041. package/config/easy/TileAFloor/output/17 - test 17.txt +17 -0
  1042. package/config/easy/TileAFloor/output/18 - test 18.txt +21 -0
  1043. package/config/easy/TileAFloor/output/19 - test 19.txt +21 -0
  1044. package/config/easy/TileAFloor/output/20 - test 20.txt +13 -0
  1045. package/config/easy/TileAFloor/output/21 - test 21.txt +29 -0
  1046. package/config/easy/TileAFloor/output/22 - test 22.txt +13 -0
  1047. package/config/easy/TileAFloor/output/23 - test 23.txt +21 -0
  1048. package/config/easy/TileAFloor/output/24 - test 24.txt +17 -0
  1049. package/config/easy/TileAFloor/output/25 - test 25.txt +17 -0
  1050. package/config/easy/TriangleToggle/code/CGCode.js +19 -0
  1051. package/config/easy/TriangleToggle/code/CGCode.php +13 -0
  1052. package/config/easy/TriangleToggle/config.json +68 -0
  1053. package/config/easy/TriangleToggle/input/01 - one right.txt +4 -0
  1054. package/config/easy/TriangleToggle/input/02 - one isosceles.txt +4 -0
  1055. package/config/easy/TriangleToggle/input/03 - two triangles, sailboat.txt +5 -0
  1056. package/config/easy/TriangleToggle/input/04 - condensed.txt +7 -0
  1057. package/config/easy/TriangleToggle/input/05 - overlap (tree).txt +6 -0
  1058. package/config/easy/TriangleToggle/input/06 - overlap expanded star of david.txt +5 -0
  1059. package/config/easy/TriangleToggle/input/07 - overlap condensed star of david.txt +5 -0
  1060. package/config/easy/TriangleToggle/input/08 - triangles inside of triangles.txt +9 -0
  1061. package/config/easy/TriangleToggle/input/09 - yoga, partial triangles.txt +7 -0
  1062. package/config/easy/TriangleToggle/input/10 - tesla truck, partial triangles.txt +6 -0
  1063. package/config/easy/TriangleToggle/input/11 - misc.txt +8 -0
  1064. package/config/easy/TriangleToggle/input/12 - overflowing everywhere.txt +5 -0
  1065. package/config/easy/TriangleToggle/output/01 - one right.txt +12 -0
  1066. package/config/easy/TriangleToggle/output/02 - one isosceles.txt +12 -0
  1067. package/config/easy/TriangleToggle/output/03 - two triangles, sailboat.txt +20 -0
  1068. package/config/easy/TriangleToggle/output/04 - condensed.txt +17 -0
  1069. package/config/easy/TriangleToggle/output/05 - overlap (tree).txt +17 -0
  1070. package/config/easy/TriangleToggle/output/07 - overlap condensed star of david.txt +22 -0
  1071. package/config/easy/TriangleToggle/output/08 - triangles inside of triangles.txt +20 -0
  1072. package/config/easy/TriangleToggle/output/09 - yoga, partial triangles.txt +19 -0
  1073. package/config/easy/TriangleToggle/output/10 - tesla truck, partial triangles.txt +9 -0
  1074. package/config/easy/TriangleToggle/output/11 - misc.txt +19 -0
  1075. package/config/easy/TriangleToggle/output/12 - overflowing everywhere.txt +29 -0
  1076. package/config/easy/UkuleleGuitarConverter/code/CGCode.js +14 -0
  1077. package/config/easy/UkuleleGuitarConverter/code/CGCode.php +15 -0
  1078. package/config/easy/UkuleleGuitarConverter/config.json +33 -0
  1079. package/config/easy/UkuleleGuitarConverter/input/01 - Guitar n=1 single output.txt +3 -0
  1080. package/config/easy/UkuleleGuitarConverter/input/02 - Ukulele n=1 multiple outputs.txt +3 -0
  1081. package/config/easy/UkuleleGuitarConverter/input/03 - Guitar multiple conversions.txt +7 -0
  1082. package/config/easy/UkuleleGuitarConverter/input/04 - Ukulele multiple conversions.txt +7 -0
  1083. package/config/easy/UkuleleGuitarConverter/input/05 - Guitar multiple conversions with no match.txt +12 -0
  1084. package/config/easy/UkuleleGuitarConverter/output/01 - Guitar n=1 single output.txt +1 -0
  1085. package/config/easy/UkuleleGuitarConverter/output/02 - Ukulele n=1 multiple outputs.txt +1 -0
  1086. package/config/easy/UkuleleGuitarConverter/output/03 - Guitar multiple conversions.txt +5 -0
  1087. package/config/easy/UkuleleGuitarConverter/output/04 - Ukulele multiple conversions.txt +5 -0
  1088. package/config/easy/UkuleleGuitarConverter/output/05 - Guitar multiple conversions with no match.txt +10 -0
  1089. package/config/easy/UlamSpiral/code/CGCode.js +8 -0
  1090. package/config/easy/UlamSpiral/code/CGCode.php +10 -0
  1091. package/config/easy/UlamSpiral/config.json +28 -0
  1092. package/config/easy/UlamSpiral/input/01 - N=3.txt +1 -0
  1093. package/config/easy/UlamSpiral/input/02 - N=9.txt +1 -0
  1094. package/config/easy/UlamSpiral/input/03 - N=15.txt +1 -0
  1095. package/config/easy/UlamSpiral/input/04 - N=21.txt +1 -0
  1096. package/config/easy/UlamSpiral/output/01 - N=3.txt +3 -0
  1097. package/config/easy/UlamSpiral/output/02 - N=9.txt +9 -0
  1098. package/config/easy/UlamSpiral/output/03 - N=15.txt +15 -0
  1099. package/config/easy/UlamSpiral/output/04 - N=21.txt +21 -0
  1100. package/config/easy/VectorsInVariablesDimensions/code/CGCode.js +11 -0
  1101. package/config/easy/VectorsInVariablesDimensions/code/CGCode.php +13 -0
  1102. package/config/easy/VectorsInVariablesDimensions/config.json +33 -0
  1103. package/config/easy/VectorsInVariablesDimensions/input/01 - test 1.txt +7 -0
  1104. package/config/easy/VectorsInVariablesDimensions/input/02 - test 2.txt +8 -0
  1105. package/config/easy/VectorsInVariablesDimensions/input/03 - test 3.txt +7 -0
  1106. package/config/easy/VectorsInVariablesDimensions/input/04 - test 4.txt +15 -0
  1107. package/config/easy/VectorsInVariablesDimensions/input/05 - test 5.txt +102 -0
  1108. package/config/easy/VectorsInVariablesDimensions/output/01 - test 1.txt +2 -0
  1109. package/config/easy/VectorsInVariablesDimensions/output/02 - test 2.txt +2 -0
  1110. package/config/easy/VectorsInVariablesDimensions/output/03 - test 3.txt +2 -0
  1111. package/config/easy/VectorsInVariablesDimensions/output/04 - test 4.txt +2 -0
  1112. package/config/easy/VectorsInVariablesDimensions/output/05 - test 5.txt +2 -0
  1113. package/config/easy/VideoAssistantReferee/code/CGCode.js +9 -0
  1114. package/config/easy/VideoAssistantReferee/code/CGCode.php +11 -0
  1115. package/config/easy/VideoAssistantReferee/config.json +73 -0
  1116. package/config/easy/VideoAssistantReferee/input/01 - Lev Yashin, the goalkeeper.txt +15 -0
  1117. package/config/easy/VideoAssistantReferee/input/02 - Cafu, the Right Back.txt +15 -0
  1118. package/config/easy/VideoAssistantReferee/input/03 - Marcelo Roberto Carlos, the Left Back.txt +15 -0
  1119. package/config/easy/VideoAssistantReferee/input/04 - Sergio Ramos, the Center Back.txt +15 -0
  1120. package/config/easy/VideoAssistantReferee/input/05 - Beckenbauer, der Kaiser, the Lib/303/251ro.txt" +15 -0
  1121. package/config/easy/VideoAssistantReferee/input/06 - Sergio Busquets, The Defensive Midfielder.txt +15 -0
  1122. package/config/easy/VideoAssistantReferee/input/07 - CR7, Raul, Emilio Butrague/303/261o.txt" +15 -0
  1123. package/config/easy/VideoAssistantReferee/input/08 - Don Alfredo (Di St/303/251fano), Johan Cruyff, Zizou.txt" +15 -0
  1124. package/config/easy/VideoAssistantReferee/input/09 - Karim Benzema.txt +15 -0
  1125. package/config/easy/VideoAssistantReferee/input/10 - Pel/303/251, Messi, Maradona, Modric.txt" +15 -0
  1126. package/config/easy/VideoAssistantReferee/input/11 - Romario, Salah, Ribery, the Second Striker Wing Forward.txt +15 -0
  1127. package/config/easy/VideoAssistantReferee/input/12 - The fans, the Ultras, aka the 12th man!.txt +15 -0
  1128. package/config/easy/VideoAssistantReferee/input/13 - Ted Lasso, the Coach, the Manager.txt +15 -0
  1129. package/config/easy/VideoAssistantReferee/output/01 - Lev Yashin, the goalkeeper.txt +2 -0
  1130. package/config/easy/VideoAssistantReferee/output/02 - Cafu, the Right Back.txt +2 -0
  1131. package/config/easy/VideoAssistantReferee/output/03 - Marcelo Roberto Carlos, the Left Back.txt +2 -0
  1132. package/config/easy/VideoAssistantReferee/output/04 - Sergio Ramos, the Center Back.txt +2 -0
  1133. package/config/easy/VideoAssistantReferee/output/05 - Beckenbauer, der Kaiser, the Lib/303/251ro.txt" +2 -0
  1134. package/config/easy/VideoAssistantReferee/output/06 - Sergio Busquets, The Defensive Midfielder.txt +2 -0
  1135. package/config/easy/VideoAssistantReferee/output/07 - CR7, Raul, Emilio Butrague/303/261o.txt" +2 -0
  1136. package/config/easy/VideoAssistantReferee/output/08 - Don Alfredo (Di St/303/251fano), Johan Cruyff, Zizou.txt" +2 -0
  1137. package/config/easy/VideoAssistantReferee/output/09 - Karim Benzema.txt +2 -0
  1138. package/config/easy/VideoAssistantReferee/output/10 - Pel/303/251, Messi, Maradona, Modric.txt" +2 -0
  1139. package/config/easy/VideoAssistantReferee/output/11 - Romario, Salah, Ribery, the Second Striker Wing Forward.txt +2 -0
  1140. package/config/easy/VideoAssistantReferee/output/12 - The fans, the Ultras, aka the 12th man!.txt +2 -0
  1141. package/config/easy/VideoAssistantReferee/output/13 - Ted Lasso, the Coach, the Manager.txt +2 -0
  1142. package/config/easy/VideoComments/code/CGCode.js +9 -0
  1143. package/config/easy/VideoComments/code/CGCode.php +11 -0
  1144. package/config/easy/VideoComments/config.json +38 -0
  1145. package/config/easy/VideoComments/input/01 - Time example.txt +4 -0
  1146. package/config/easy/VideoComments/input/02 - Likes count.txt +4 -0
  1147. package/config/easy/VideoComments/input/03 - Tie - Followed.txt +6 -0
  1148. package/config/easy/VideoComments/input/04 - Pinned - All priorities.txt +4 -0
  1149. package/config/easy/VideoComments/input/05 - Replies.txt +8 -0
  1150. package/config/easy/VideoComments/input/06 - Followed in replies.txt +8 -0
  1151. package/config/easy/VideoComments/output/01 - Time example.txt +3 -0
  1152. package/config/easy/VideoComments/output/02 - Likes count.txt +3 -0
  1153. package/config/easy/VideoComments/output/03 - Tie - Followed.txt +5 -0
  1154. package/config/easy/VideoComments/output/04 - Pinned - All priorities.txt +3 -0
  1155. package/config/easy/VideoComments/output/05 - Replies.txt +7 -0
  1156. package/config/easy/VideoComments/output/06 - Followed in replies.txt +7 -0
  1157. package/config/easy/WhereAmIGoing/code/CGCode.js +10 -0
  1158. package/config/easy/WhereAmIGoing/code/CGCode.php +12 -0
  1159. package/config/easy/WhereAmIGoing/config.json +28 -0
  1160. package/config/easy/WhereAmIGoing/input/01 - Example.txt +3 -0
  1161. package/config/easy/WhereAmIGoing/input/02 - Simple.txt +5 -0
  1162. package/config/easy/WhereAmIGoing/input/03 - Spiral.txt +12 -0
  1163. package/config/easy/WhereAmIGoing/input/04 - Hard.txt +17 -0
  1164. package/config/easy/WhereAmIGoing/output/01 - Example.txt +1 -0
  1165. package/config/easy/WhereAmIGoing/output/02 - Simple.txt +1 -0
  1166. package/config/easy/WhereAmIGoing/output/03 - Spiral.txt +1 -0
  1167. package/config/easy/WhereAmIGoing/output/04 - Hard.txt +1 -0
  1168. package/config/easy/WordSearchForProgrammers/code/CGCode.js +10 -0
  1169. package/config/easy/WordSearchForProgrammers/code/CGCode.php +12 -0
  1170. package/config/easy/WordSearchForProgrammers/config.json +38 -0
  1171. package/config/easy/WordSearchForProgrammers/input/01 - The Simpsons (Test 1).txt +12 -0
  1172. package/config/easy/WordSearchForProgrammers/input/02 - Famous Animals (Test 2).txt +17 -0
  1173. package/config/easy/WordSearchForProgrammers/input/03 - US Presidents (Test 3).txt +17 -0
  1174. package/config/easy/WordSearchForProgrammers/input/04 - Populous Countries (Test 4).txt +17 -0
  1175. package/config/easy/WordSearchForProgrammers/input/05 - Many people with one name (Test 5).txt +17 -0
  1176. package/config/easy/WordSearchForProgrammers/input/06 - Older Countries Median age over 40 (Test 6).txt +32 -0
  1177. package/config/easy/WordSearchForProgrammers/output/01 - The Simpsons (Test 1).txt +10 -0
  1178. package/config/easy/WordSearchForProgrammers/output/02 - Famous Animals (Test 2).txt +15 -0
  1179. package/config/easy/WordSearchForProgrammers/output/03 - US Presidents (Test 3).txt +15 -0
  1180. package/config/easy/WordSearchForProgrammers/output/04 - Populous Countries (Test 4).txt +15 -0
  1181. package/config/easy/WordSearchForProgrammers/output/05 - Many people with one name (Test 5).txt +15 -0
  1182. package/config/easy/WordSearchForProgrammers/output/06 - Older Countries Median age over 40 (Test 6).txt +30 -0
  1183. package/config/easy/WordleColorizer/code/CGCode.js +10 -0
  1184. package/config/easy/WordleColorizer/code/CGCode.php +12 -0
  1185. package/config/easy/WordleColorizer/config.json +28 -0
  1186. package/config/easy/WordleColorizer/input/01 - POLKA.txt +6 -0
  1187. package/config/easy/WordleColorizer/input/02 - WATER.txt +7 -0
  1188. package/config/easy/WordleColorizer/input/03 - KOALA.txt +8 -0
  1189. package/config/easy/WordleColorizer/input/04 - NANNY.txt +8 -0
  1190. package/config/easy/WordleColorizer/output/01 - POLKA.txt +4 -0
  1191. package/config/easy/WordleColorizer/output/02 - WATER.txt +5 -0
  1192. package/config/easy/WordleColorizer/output/03 - KOALA.txt +6 -0
  1193. package/config/easy/WordleColorizer/output/04 - NANNY.txt +6 -0
  1194. package/config/easy/YouAreTheFatherMauryPovichStyle/code/CGCode.js +11 -0
  1195. package/config/easy/YouAreTheFatherMauryPovichStyle/code/CGCode.php +13 -0
  1196. package/config/easy/YouAreTheFatherMauryPovichStyle/config.json +53 -0
  1197. package/config/easy/YouAreTheFatherMauryPovichStyle/input/01 - test 1.txt +8 -0
  1198. package/config/easy/YouAreTheFatherMauryPovichStyle/input/02 - test 2.txt +6 -0
  1199. package/config/easy/YouAreTheFatherMauryPovichStyle/input/03 - test 3.txt +8 -0
  1200. package/config/easy/YouAreTheFatherMauryPovichStyle/input/04 - test 4.txt +7 -0
  1201. package/config/easy/YouAreTheFatherMauryPovichStyle/input/05 - test 5.txt +9 -0
  1202. package/config/easy/YouAreTheFatherMauryPovichStyle/input/06 - That was close.txt +11 -0
  1203. package/config/easy/YouAreTheFatherMauryPovichStyle/input/07 - so close for so many.txt +7 -0
  1204. package/config/easy/YouAreTheFatherMauryPovichStyle/input/08 - - everything from Mother in some pairs.txt +10 -0
  1205. package/config/easy/YouAreTheFatherMauryPovichStyle/input/09 - they/342/200/231re all 95%+ matches.txt" +11 -0
  1206. package/config/easy/YouAreTheFatherMauryPovichStyle/output/01 - test 1.txt +1 -0
  1207. package/config/easy/YouAreTheFatherMauryPovichStyle/output/02 - test 2.txt +1 -0
  1208. package/config/easy/YouAreTheFatherMauryPovichStyle/output/03 - test 3.txt +1 -0
  1209. package/config/easy/YouAreTheFatherMauryPovichStyle/output/04 - test 4.txt +1 -0
  1210. package/config/easy/YouAreTheFatherMauryPovichStyle/output/05 - test 5.txt +1 -0
  1211. package/config/easy/YouAreTheFatherMauryPovichStyle/output/06 - That was close.txt +1 -0
  1212. package/config/easy/YouAreTheFatherMauryPovichStyle/output/07 - so close for so many.txt +1 -0
  1213. package/config/easy/YouAreTheFatherMauryPovichStyle/output/08 - - everything from Mother in some pairs.txt +1 -0
  1214. package/config/easy/YouAreTheFatherMauryPovichStyle/output/09 - they/342/200/231re all 95%+ matches.txt" +1 -0
  1215. package/config/easy/ZeckendorfRepresentationPartI/code/CGCode.js +6 -0
  1216. package/config/easy/ZeckendorfRepresentationPartI/code/CGCode.php +7 -0
  1217. package/config/easy/ZeckendorfRepresentationPartI/config.json +28 -0
  1218. package/config/easy/ZeckendorfRepresentationPartI/input/01 - test 1.txt +1 -0
  1219. package/config/easy/ZeckendorfRepresentationPartI/input/02 - test 2.txt +1 -0
  1220. package/config/easy/ZeckendorfRepresentationPartI/input/03 - test 3.txt +1 -0
  1221. package/config/easy/ZeckendorfRepresentationPartI/input/04 - test 4.txt +1 -0
  1222. package/config/easy/ZeckendorfRepresentationPartI/output/01 - test 1.txt +1 -0
  1223. package/config/easy/ZeckendorfRepresentationPartI/output/02 - test 2.txt +1 -0
  1224. package/config/easy/ZeckendorfRepresentationPartI/output/03 - test 3.txt +1 -0
  1225. package/config/easy/ZeckendorfRepresentationPartI/output/04 - test 4.txt +1 -0
  1226. package/config/medium/FoldingANote/config.json +1 -1
  1227. package/config/medium/NearPalindromes/config.json +1 -1
  1228. package/package.json +1 -1
  1229. /package/config/{medium/MerlinsMagicSquare/output/20 - test 20.txt → easy/AnotherRoadConstructionSite1/output/01 - Little annoyance.txt} +0 -0
  1230. /package/config/{medium/MerlinsMagicSquare/output/01 - simple.txt → easy/AnotherRoadConstructionSite1/output/02 - Like stopping for a coffee.txt} +0 -0
  1231. /package/config/{medium/MerlinsMagicSquare/output/14 - test 14.txt → easy/FoldingPaper/output/01 - 2 ply.txt} +0 -0
  1232. /package/config/{medium/MerlinsMagicSquare/output/12 - now you/342/200/231re just messing around.txt" → easy/FoldingPaper/output/04 - 8 ply easy.txt} +0 -0
  1233. /package/config/{medium → easy}/MerlinsMagicSquare/code/CGCode.js +0 -0
  1234. /package/config/{medium → easy}/MerlinsMagicSquare/code/CGCode.php +0 -0
  1235. /package/config/{medium → easy}/MerlinsMagicSquare/input/01 - simple.txt +0 -0
  1236. /package/config/{medium → easy}/MerlinsMagicSquare/input/02 - test 2.txt +0 -0
  1237. /package/config/{medium → easy}/MerlinsMagicSquare/input/03 - test 3.txt +0 -0
  1238. /package/config/{medium → easy}/MerlinsMagicSquare/input/04 - test 4.txt +0 -0
  1239. /package/config/{medium → easy}/MerlinsMagicSquare/input/05 - test 5.txt +0 -0
  1240. /package/config/{medium → easy}/MerlinsMagicSquare/input/06 - test 6.txt +0 -0
  1241. /package/config/{medium → easy}/MerlinsMagicSquare/input/07 - test 7.txt +0 -0
  1242. /package/config/{medium → easy}/MerlinsMagicSquare/input/08 - test 8.txt +0 -0
  1243. /package/config/{medium → easy}/MerlinsMagicSquare/input/09 - test 9.txt +0 -0
  1244. /package/config/{medium → easy}/MerlinsMagicSquare/input/10 - lizzo is making this too hard.txt +0 -0
  1245. /package/config/{medium → easy}/MerlinsMagicSquare/input/11 - one button.txt +0 -0
  1246. /package/config/{medium → easy}/MerlinsMagicSquare/input/12 - now you/342/200/231re just messing around.txt" +0 -0
  1247. /package/config/{medium → easy}/MerlinsMagicSquare/input/13 - test 13.txt +0 -0
  1248. /package/config/{medium → easy}/MerlinsMagicSquare/input/14 - test 14.txt +0 -0
  1249. /package/config/{medium → easy}/MerlinsMagicSquare/input/15 - test 15.txt +0 -0
  1250. /package/config/{medium → easy}/MerlinsMagicSquare/input/16 - test 16.txt +0 -0
  1251. /package/config/{medium → easy}/MerlinsMagicSquare/input/17 - test 17.txt +0 -0
  1252. /package/config/{medium → easy}/MerlinsMagicSquare/input/18 - test 18.txt +0 -0
  1253. /package/config/{medium → easy}/MerlinsMagicSquare/input/19 - test 19.txt +0 -0
  1254. /package/config/{medium → easy}/MerlinsMagicSquare/input/20 - test 20.txt +0 -0
  1255. /package/config/{medium → easy}/MerlinsMagicSquare/input/21 - test 21.txt +0 -0
  1256. /package/config/{medium → easy}/MerlinsMagicSquare/input/22 - test 22.txt +0 -0
  1257. /package/config/{medium → easy}/MerlinsMagicSquare/input/23 - test 23.txt +0 -0
  1258. /package/config/{medium → easy}/MerlinsMagicSquare/input/24 - test 24.txt +0 -0
  1259. /package/config/{medium → easy}/MerlinsMagicSquare/input/25 - test 25.txt +0 -0
  1260. /package/config/{medium/MerlinsMagicSquare/output/13 - test 13.txt → easy/MerlinsMagicSquare/output/01 - simple.txt} +0 -0
  1261. /package/config/{medium → easy}/MerlinsMagicSquare/output/02 - test 2.txt +0 -0
  1262. /package/config/{medium → easy}/MerlinsMagicSquare/output/03 - test 3.txt +0 -0
  1263. /package/config/{medium → easy}/MerlinsMagicSquare/output/04 - test 4.txt +0 -0
  1264. /package/config/{medium → easy}/MerlinsMagicSquare/output/05 - test 5.txt +0 -0
  1265. /package/config/{medium → easy}/MerlinsMagicSquare/output/06 - test 6.txt +0 -0
  1266. /package/config/{medium → easy}/MerlinsMagicSquare/output/07 - test 7.txt +0 -0
  1267. /package/config/{medium → easy}/MerlinsMagicSquare/output/08 - test 8.txt +0 -0
  1268. /package/config/{medium → easy}/MerlinsMagicSquare/output/09 - test 9.txt +0 -0
  1269. /package/config/{medium → easy}/MerlinsMagicSquare/output/10 - lizzo is making this too hard.txt +0 -0
  1270. /package/config/{medium → easy}/MerlinsMagicSquare/output/11 - one button.txt +0 -0
  1271. /package/config/{medium/MerlinsMagicSquare/output/23 - test 23.txt → easy/MerlinsMagicSquare/output/12 - now you/342/200/231re just messing around.txt"} +0 -0
  1272. /package/config/{medium/MerlinsMagicSquare/output/16 - test 16.txt → easy/MerlinsMagicSquare/output/14 - test 14.txt} +0 -0
  1273. /package/config/{medium → easy}/MerlinsMagicSquare/output/15 - test 15.txt +0 -0
  1274. /package/config/{medium/MerlinsMagicSquare/output/24 - test 24.txt → easy/MerlinsMagicSquare/output/16 - test 16.txt} +0 -0
  1275. /package/config/{medium → easy}/MerlinsMagicSquare/output/17 - test 17.txt +0 -0
  1276. /package/config/{medium → easy}/MerlinsMagicSquare/output/18 - test 18.txt +0 -0
  1277. /package/config/{medium → easy}/MerlinsMagicSquare/output/19 - test 19.txt +0 -0
  1278. /package/config/{medium/MerlinsMagicSquare/output/21 - test 21.txt → easy/MerlinsMagicSquare/output/20 - test 20.txt} +0 -0
  1279. /package/config/{medium → easy}/MerlinsMagicSquare/output/22 - test 22.txt +0 -0
  1280. /package/config/{medium → easy}/MerlinsMagicSquare/output/25 - test 25.txt +0 -0
@@ -0,0 +1,1107 @@
1
+ 4
2
+ P1
3
+ P2
4
+ P3
5
+ P4
6
+ 800
7
+ A 5 7 3 2
8
+ B 7 7 7 1
9
+ C 8 7 3 3
10
+ D 8 4 6 9
11
+ E 8 1 3 9
12
+ F 1 4 9 8
13
+ G 8 4 8 9
14
+ H 1 5 2 7
15
+ I 5 9 2 6
16
+ J 1 8 8 9
17
+ K 3 8 3 8
18
+ L 7 1 5 4
19
+ M 2 3 9 8
20
+ N 2 8 9 8
21
+ O 4 5 9 3
22
+ P 6 8 5 4
23
+ Q 3 9 1 5
24
+ R 8 9 8 3
25
+ S 7 5 6 7
26
+ T 5 1 7 5
27
+ U 7 8 7 8
28
+ V 5 7 8 7
29
+ W 6 3 7 2
30
+ X 7 9 1 8
31
+ Y 6 8 2 6
32
+ A 7 1 6 7
33
+ B 1 7 2 2
34
+ C 6 9 5 9
35
+ D 8 1 4 1
36
+ E 5 2 6 5
37
+ F 9 7 2 2
38
+ G 8 9 3 5
39
+ H 5 1 5 8
40
+ I 2 5 3 9
41
+ J 1 5 1 8
42
+ K 8 5 5 6
43
+ L 5 5 5 7
44
+ M 8 2 7 1
45
+ N 1 6 8 3
46
+ O 3 2 9 5
47
+ P 7 3 9 9
48
+ Q 2 8 6 9
49
+ R 9 4 8 3
50
+ S 3 7 7 8
51
+ T 2 3 1 4
52
+ U 6 8 7 9
53
+ V 7 2 3 1
54
+ W 9 2 5 5
55
+ X 2 9 7 5
56
+ Y 9 6 4 6
57
+ A 3 3 1 8
58
+ B 1 7 2 8
59
+ C 5 8 9 8
60
+ D 8 1 9 7
61
+ E 5 4 9 8
62
+ F 6 2 2 1
63
+ G 7 1 4 1
64
+ H 9 3 2 1
65
+ I 6 6 3 8
66
+ J 5 9 2 6
67
+ K 8 7 6 9
68
+ L 3 4 6 4
69
+ M 2 6 9 8
70
+ N 6 4 6 5
71
+ O 2 5 7 4
72
+ P 5 8 9 8
73
+ Q 5 9 8 1
74
+ R 9 7 2 2
75
+ S 9 4 7 4
76
+ T 1 9 1 4
77
+ U 3 5 5 4
78
+ V 8 5 7 8
79
+ W 7 2 4 1
80
+ X 1 6 8 7
81
+ Y 4 6 2 4
82
+ A 4 1 9 4
83
+ B 3 2 5 4
84
+ C 9 8 8 6
85
+ D 7 7 5 5
86
+ E 7 1 8 4
87
+ F 9 4 6 9
88
+ G 5 3 7 8
89
+ H 7 7 4 1
90
+ I 1 7 2 2
91
+ J 9 6 8 1
92
+ K 3 1 2 1
93
+ L 2 1 6 1
94
+ M 1 4 7 7
95
+ N 8 2 7 2
96
+ O 4 4 7 4
97
+ P 4 8 2 2
98
+ Q 5 2 5 4
99
+ R 9 9 7 3
100
+ S 7 1 9 3
101
+ T 2 5 5 6
102
+ U 5 1 2 4
103
+ V 3 4 3 5
104
+ W 1 9 1 9
105
+ X 6 3 9 3
106
+ Y 1 2 6 5
107
+ A 5 3 3 7
108
+ B 4 2 8 1
109
+ C 4 5 1 9
110
+ D 2 8 9 1
111
+ E 6 5 6 9
112
+ F 2 6 8 1
113
+ G 5 3 6 2
114
+ H 3 6 2 7
115
+ I 7 7 1 2
116
+ J 8 3 3 7
117
+ K 5 3 1 6
118
+ L 4 8 4 1
119
+ M 8 4 5 8
120
+ N 7 2 9 9
121
+ O 5 8 3 4
122
+ P 5 8 8 2
123
+ Q 8 5 6 6
124
+ R 6 5 8 4
125
+ S 3 8 7 6
126
+ T 4 6 8 4
127
+ U 8 8 5 3
128
+ V 1 7 9 8
129
+ W 9 4 1 8
130
+ X 4 8 5 2
131
+ Y 3 7 6 1
132
+ A 3 6 2 5
133
+ B 8 4 2 1
134
+ C 3 4 8 2
135
+ D 7 1 5 6
136
+ E 1 9 7 4
137
+ F 5 4 3 9
138
+ G 5 3 4 3
139
+ H 2 5 8 8
140
+ I 6 2 1 2
141
+ J 2 7 9 4
142
+ K 6 6 1 8
143
+ L 1 4 4 5
144
+ M 5 4 8 9
145
+ N 9 1 8 7
146
+ O 6 3 9 7
147
+ P 2 1 6 9
148
+ Q 2 3 9 6
149
+ R 3 1 5 4
150
+ S 8 1 3 9
151
+ T 1 2 4 5
152
+ U 4 7 3 7
153
+ V 9 9 2 4
154
+ W 2 6 8 4
155
+ X 3 3 4 3
156
+ Y 3 2 4 4
157
+ A 1 3 4 6
158
+ B 8 8 6 5
159
+ C 5 8 1 4
160
+ D 1 6 5 3
161
+ E 8 5 2 8
162
+ F 9 8 7 8
163
+ G 7 7 7 8
164
+ H 5 9 6 5
165
+ I 5 7 3 6
166
+ J 5 6 2 5
167
+ K 2 1 9 7
168
+ L 9 3 1 2
169
+ M 4 9 6 5
170
+ N 3 9 8 9
171
+ O 7 7 4 8
172
+ P 6 1 8 8
173
+ Q 3 2 6 8
174
+ R 6 9 3 2
175
+ S 9 6 3 4
176
+ T 4 4 1 4
177
+ U 9 3 2 4
178
+ V 4 4 7 2
179
+ W 6 2 3 2
180
+ X 7 8 6 5
181
+ Y 1 9 8 4
182
+ A 8 6 4 8
183
+ B 4 6 7 3
184
+ C 8 9 3 9
185
+ D 8 7 1 1
186
+ E 6 2 7 3
187
+ F 4 1 1 7
188
+ G 2 7 3 9
189
+ H 8 5 9 2
190
+ I 3 1 8 4
191
+ J 9 7 5 1
192
+ K 8 4 8 9
193
+ L 2 3 2 5
194
+ M 9 8 4 4
195
+ N 2 6 8 7
196
+ O 3 3 8 3
197
+ P 9 1 3 2
198
+ Q 6 8 9 9
199
+ R 6 2 8 1
200
+ S 9 2 3 6
201
+ T 8 6 3 2
202
+ U 9 2 7 1
203
+ V 3 1 1 6
204
+ W 4 3 5 1
205
+ X 4 5 2 8
206
+ Y 4 2 5 9
207
+ A 2 1 5 1
208
+ B 3 4 1 7
209
+ C 6 5 1 7
210
+ D 8 5 6 5
211
+ E 9 2 1 3
212
+ F 1 9 2 7
213
+ G 9 6 4 8
214
+ H 7 6 7 9
215
+ I 3 3 1 5
216
+ J 6 6 2 5
217
+ K 4 6 3 3
218
+ L 1 2 3 9
219
+ M 4 5 4 4
220
+ N 7 2 4 2
221
+ O 1 6 1 9
222
+ P 3 7 3 9
223
+ Q 8 8 3 4
224
+ R 6 5 2 2
225
+ S 3 1 9 3
226
+ T 2 8 5 2
227
+ U 5 5 2 6
228
+ V 2 6 5 2
229
+ W 3 8 1 4
230
+ X 1 5 2 7
231
+ Y 9 1 4 1
232
+ A 6 1 9 8
233
+ B 2 4 6 6
234
+ C 6 8 9 9
235
+ D 1 8 6 6
236
+ E 3 1 9 7
237
+ F 6 1 5 1
238
+ G 7 8 8 3
239
+ H 9 4 6 5
240
+ I 1 3 8 3
241
+ J 6 1 3 3
242
+ K 3 6 2 5
243
+ L 6 2 7 8
244
+ M 5 3 7 7
245
+ N 3 3 9 1
246
+ O 5 2 3 2
247
+ P 8 1 1 6
248
+ Q 4 7 3 4
249
+ R 1 8 9 7
250
+ S 6 7 5 1
251
+ T 2 9 3 3
252
+ U 5 2 1 2
253
+ V 3 4 6 9
254
+ W 4 4 2 6
255
+ X 5 9 6 3
256
+ Y 6 3 8 1
257
+ A 6 4 3 1
258
+ B 9 7 8 9
259
+ C 7 1 5 2
260
+ D 3 2 7 3
261
+ E 1 4 4 3
262
+ F 8 4 3 9
263
+ G 7 2 1 8
264
+ H 8 9 3 2
265
+ I 5 8 7 8
266
+ J 3 2 1 1
267
+ K 3 7 3 9
268
+ L 2 6 4 8
269
+ M 2 6 9 3
270
+ N 7 8 2 2
271
+ O 7 5 8 2
272
+ P 9 1 8 9
273
+ Q 7 3 8 5
274
+ R 9 3 4 5
275
+ S 6 3 3 8
276
+ T 3 8 2 3
277
+ U 7 6 1 2
278
+ V 2 1 1 2
279
+ W 1 5 6 6
280
+ X 1 8 8 4
281
+ Y 8 4 7 1
282
+ A 9 2 4 9
283
+ B 4 4 1 5
284
+ C 9 9 5 7
285
+ D 3 5 2 7
286
+ E 5 5 1 4
287
+ F 9 1 6 5
288
+ G 1 1 4 6
289
+ H 7 1 1 4
290
+ I 7 7 5 3
291
+ J 6 1 1 8
292
+ K 3 9 2 3
293
+ L 1 9 6 4
294
+ M 1 9 5 1
295
+ N 2 1 8 7
296
+ O 3 6 7 8
297
+ P 4 7 6 2
298
+ Q 3 6 9 5
299
+ R 4 7 3 1
300
+ S 8 3 6 9
301
+ T 4 9 6 9
302
+ U 7 8 4 3
303
+ V 2 7 7 3
304
+ W 8 1 5 3
305
+ X 5 6 9 9
306
+ Y 1 7 9 1
307
+ A 7 2 7 7
308
+ B 4 6 7 9
309
+ C 1 3 3 1
310
+ D 2 9 1 6
311
+ E 7 4 4 8
312
+ F 6 9 3 2
313
+ G 5 6 6 6
314
+ H 1 8 3 5
315
+ I 7 5 7 5
316
+ J 3 3 5 7
317
+ K 2 6 9 7
318
+ L 7 1 7 2
319
+ M 6 4 6 6
320
+ N 8 2 9 1
321
+ O 7 2 5 1
322
+ P 9 5 7 7
323
+ Q 2 7 5 2
324
+ R 8 4 9 9
325
+ S 7 6 9 2
326
+ T 9 4 3 3
327
+ U 7 4 4 9
328
+ V 7 2 5 8
329
+ W 5 7 6 2
330
+ X 1 4 2 7
331
+ Y 5 2 8 2
332
+ A 3 3 5 3
333
+ B 6 2 8 7
334
+ C 2 7 8 3
335
+ D 8 9 4 7
336
+ E 3 5 1 1
337
+ F 7 7 9 6
338
+ G 3 5 9 3
339
+ H 5 9 6 9
340
+ I 8 5 4 4
341
+ J 3 4 4 9
342
+ K 9 2 9 1
343
+ L 1 9 6 3
344
+ M 9 6 1 3
345
+ N 7 6 9 3
346
+ O 1 8 6 8
347
+ P 1 1 3 2
348
+ Q 3 5 5 4
349
+ R 2 9 4 7
350
+ S 6 4 4 9
351
+ T 9 4 7 5
352
+ U 9 1 7 4
353
+ V 6 6 9 7
354
+ W 4 9 8 6
355
+ X 8 7 1 2
356
+ Y 2 2 8 4
357
+ A 8 4 3 2
358
+ B 9 3 5 1
359
+ C 1 8 9 2
360
+ D 5 2 4 6
361
+ E 5 5 1 8
362
+ F 5 3 5 1
363
+ G 4 2 4 1
364
+ H 3 4 5 4
365
+ I 6 2 7 4
366
+ J 9 7 7 4
367
+ K 4 1 9 6
368
+ L 2 4 6 3
369
+ M 2 7 2 9
370
+ N 6 4 2 9
371
+ O 8 5 8 6
372
+ P 7 1 2 5
373
+ Q 4 9 7 7
374
+ R 6 9 7 5
375
+ S 5 5 5 3
376
+ T 8 6 6 3
377
+ U 7 3 8 5
378
+ V 6 6 3 6
379
+ W 7 4 5 2
380
+ X 6 4 5 6
381
+ Y 9 8 6 7
382
+ A 8 4 8 6
383
+ B 4 5 2 7
384
+ C 7 4 6 3
385
+ D 7 6 2 1
386
+ E 1 7 6 4
387
+ F 7 7 8 8
388
+ G 2 2 6 6
389
+ H 4 1 9 3
390
+ I 9 5 2 5
391
+ J 6 1 4 8
392
+ K 1 5 7 5
393
+ L 2 2 1 1
394
+ M 4 2 1 6
395
+ N 8 6 5 8
396
+ O 3 8 6 8
397
+ P 2 2 4 3
398
+ Q 9 3 6 9
399
+ R 9 8 7 1
400
+ S 8 4 1 1
401
+ T 1 6 1 2
402
+ U 6 2 8 7
403
+ V 8 5 9 5
404
+ W 7 9 5 6
405
+ X 9 6 3 8
406
+ Y 8 6 4 8
407
+ A 2 6 9 2
408
+ B 9 3 4 6
409
+ C 8 1 8 1
410
+ D 6 7 5 1
411
+ E 1 3 8 8
412
+ F 4 8 1 9
413
+ G 2 4 9 2
414
+ H 8 3 9 5
415
+ I 5 8 8 5
416
+ J 3 8 1 5
417
+ K 2 1 1 3
418
+ L 4 6 6 2
419
+ M 6 9 4 8
420
+ N 5 4 5 7
421
+ O 3 1 6 9
422
+ P 9 9 7 4
423
+ Q 4 6 4 5
424
+ R 6 4 5 3
425
+ S 4 7 4 2
426
+ T 8 5 8 1
427
+ U 6 1 4 1
428
+ V 8 6 8 2
429
+ W 1 9 7 4
430
+ X 7 2 4 3
431
+ Y 7 8 6 6
432
+ A 9 4 9 4
433
+ B 9 4 6 6
434
+ C 7 5 3 5
435
+ D 6 6 8 5
436
+ E 3 6 5 7
437
+ F 9 2 6 3
438
+ G 2 9 2 1
439
+ H 1 8 7 8
440
+ I 2 4 5 5
441
+ J 7 8 2 7
442
+ K 8 4 6 3
443
+ L 5 2 2 9
444
+ M 1 3 8 2
445
+ N 8 9 7 9
446
+ O 2 2 5 5
447
+ P 1 8 7 6
448
+ Q 4 8 4 8
449
+ R 6 4 1 7
450
+ S 4 3 2 2
451
+ T 4 8 7 4
452
+ U 7 4 9 5
453
+ V 8 6 2 6
454
+ W 5 3 6 8
455
+ X 9 3 1 2
456
+ Y 7 1 3 4
457
+ A 2 9 1 9
458
+ B 7 3 6 6
459
+ C 7 8 2 2
460
+ D 5 5 9 4
461
+ E 7 2 9 5
462
+ F 5 4 6 8
463
+ G 1 5 3 2
464
+ H 6 1 2 9
465
+ I 5 5 2 3
466
+ J 4 9 3 4
467
+ K 6 7 2 8
468
+ L 1 5 7 8
469
+ M 9 2 5 6
470
+ N 9 7 1 4
471
+ O 5 6 2 1
472
+ P 2 7 8 5
473
+ Q 1 6 5 9
474
+ R 7 3 1 6
475
+ S 7 9 3 8
476
+ T 3 3 3 8
477
+ U 6 3 9 5
478
+ V 3 3 5 4
479
+ W 2 7 5 1
480
+ X 3 9 3 4
481
+ Y 5 4 3 9
482
+ A 4 6 5 3
483
+ B 9 9 5 6
484
+ C 3 1 5 3
485
+ D 1 7 9 4
486
+ E 8 6 4 8
487
+ F 7 2 5 9
488
+ G 8 3 3 6
489
+ H 4 8 7 2
490
+ I 4 7 4 9
491
+ J 8 8 6 4
492
+ K 7 8 5 8
493
+ L 5 3 5 4
494
+ M 6 4 7 7
495
+ N 3 2 5 5
496
+ O 3 2 7 3
497
+ P 1 6 6 3
498
+ Q 9 7 2 6
499
+ R 4 9 1 8
500
+ S 6 8 5 8
501
+ T 1 2 1 3
502
+ U 1 1 2 8
503
+ V 1 5 4 9
504
+ W 5 4 3 3
505
+ X 5 2 1 8
506
+ Y 1 3 6 1
507
+ A 5 8 7 5
508
+ B 1 9 6 2
509
+ C 3 8 4 9
510
+ D 1 6 5 6
511
+ E 6 4 2 6
512
+ F 8 7 4 3
513
+ G 6 2 3 4
514
+ H 8 7 6 8
515
+ I 9 8 8 8
516
+ J 6 3 1 8
517
+ K 1 4 6 4
518
+ L 3 1 3 8
519
+ M 5 3 5 9
520
+ N 5 6 3 7
521
+ O 6 4 1 4
522
+ P 6 2 3 5
523
+ Q 4 3 2 4
524
+ R 3 6 1 3
525
+ S 5 4 2 2
526
+ T 7 8 4 9
527
+ U 4 8 1 4
528
+ V 3 6 8 2
529
+ W 6 6 3 7
530
+ X 9 2 6 2
531
+ Y 5 5 2 9
532
+ A 5 2 8 7
533
+ B 9 2 6 6
534
+ C 8 5 3 4
535
+ D 3 9 7 5
536
+ E 5 8 7 4
537
+ F 6 7 6 2
538
+ G 6 1 2 8
539
+ H 7 7 5 9
540
+ I 5 8 7 4
541
+ J 7 2 1 7
542
+ K 9 2 2 7
543
+ L 4 4 8 2
544
+ M 6 1 4 8
545
+ N 4 3 7 9
546
+ O 7 8 1 9
547
+ P 1 8 2 1
548
+ Q 9 6 4 2
549
+ R 1 3 3 9
550
+ S 8 4 9 9
551
+ T 5 6 8 5
552
+ U 6 3 7 6
553
+ V 2 7 4 2
554
+ W 3 4 7 6
555
+ X 9 6 5 5
556
+ Y 4 3 2 7
557
+ A 2 9 3 2
558
+ B 2 6 7 7
559
+ C 7 3 6 5
560
+ D 4 8 5 9
561
+ E 1 6 8 2
562
+ F 1 5 7 2
563
+ G 4 8 8 8
564
+ H 6 9 9 9
565
+ I 1 4 8 4
566
+ J 9 5 7 5
567
+ K 6 3 4 8
568
+ L 3 3 3 3
569
+ M 8 8 7 1
570
+ N 6 6 9 1
571
+ O 5 3 9 2
572
+ P 8 6 3 4
573
+ Q 5 1 2 3
574
+ R 7 2 2 9
575
+ S 5 2 8 5
576
+ T 8 9 6 6
577
+ U 6 2 2 1
578
+ V 3 4 8 3
579
+ W 5 1 6 7
580
+ X 1 7 8 4
581
+ Y 4 8 6 9
582
+ A 7 2 3 9
583
+ B 5 8 2 2
584
+ C 5 1 7 5
585
+ D 4 4 5 8
586
+ E 6 7 7 2
587
+ F 2 1 4 5
588
+ G 4 8 9 5
589
+ H 9 1 9 4
590
+ I 2 7 7 4
591
+ J 7 3 8 5
592
+ K 9 1 5 9
593
+ L 9 7 1 9
594
+ M 1 5 1 2
595
+ N 4 8 3 2
596
+ O 1 1 1 6
597
+ P 4 8 7 9
598
+ Q 8 9 1 3
599
+ R 8 9 9 6
600
+ S 6 1 6 1
601
+ T 1 6 2 7
602
+ U 8 6 1 4
603
+ V 2 7 3 2
604
+ W 4 5 4 3
605
+ X 8 8 5 6
606
+ Y 2 7 1 5
607
+ A 4 2 1 7
608
+ B 8 4 3 2
609
+ C 5 1 3 8
610
+ D 3 6 7 5
611
+ E 1 7 3 6
612
+ F 6 9 6 4
613
+ G 5 8 4 3
614
+ H 9 1 2 4
615
+ I 3 1 7 4
616
+ J 5 1 5 4
617
+ K 2 5 4 2
618
+ L 5 7 6 3
619
+ M 1 3 2 9
620
+ N 6 5 4 4
621
+ O 1 2 2 6
622
+ P 3 7 9 5
623
+ Q 8 4 1 3
624
+ R 2 6 6 5
625
+ S 8 1 1 4
626
+ T 4 5 6 6
627
+ U 9 6 7 4
628
+ V 2 3 2 7
629
+ W 7 7 7 1
630
+ X 4 6 3 1
631
+ Y 2 5 1 4
632
+ A 9 7 2 3
633
+ B 1 1 6 9
634
+ C 7 9 4 8
635
+ D 4 4 8 4
636
+ E 9 4 1 1
637
+ F 9 2 8 8
638
+ G 5 7 4 4
639
+ H 3 1 6 4
640
+ I 5 3 7 4
641
+ J 9 6 1 2
642
+ K 2 2 6 7
643
+ L 4 2 8 6
644
+ M 1 2 8 5
645
+ N 3 2 8 5
646
+ O 5 4 4 7
647
+ P 3 5 3 6
648
+ Q 1 9 1 9
649
+ R 2 2 4 1
650
+ S 4 1 8 8
651
+ T 4 3 4 2
652
+ U 4 2 8 6
653
+ V 8 9 9 5
654
+ W 3 6 5 5
655
+ X 5 1 4 3
656
+ Y 1 3 5 9
657
+ A 2 7 3 5
658
+ B 3 1 5 3
659
+ C 6 7 3 7
660
+ D 7 2 9 2
661
+ E 5 1 5 4
662
+ F 6 6 3 7
663
+ G 1 5 7 4
664
+ H 9 5 4 6
665
+ I 1 3 4 6
666
+ J 6 3 9 2
667
+ K 9 7 4 3
668
+ L 8 6 4 1
669
+ M 4 3 9 4
670
+ N 6 6 2 8
671
+ O 6 4 9 1
672
+ P 9 9 7 4
673
+ Q 9 5 2 9
674
+ R 9 9 2 9
675
+ S 7 2 8 9
676
+ T 4 7 9 1
677
+ U 2 4 8 3
678
+ V 2 9 6 7
679
+ W 1 8 8 8
680
+ X 6 8 9 5
681
+ Y 3 7 1 3
682
+ A 3 4 5 4
683
+ B 5 4 5 5
684
+ C 3 7 6 6
685
+ D 7 8 9 1
686
+ E 6 7 2 2
687
+ F 8 6 4 8
688
+ G 3 8 2 9
689
+ H 3 6 6 7
690
+ I 9 7 2 7
691
+ J 7 3 8 2
692
+ K 7 1 2 4
693
+ L 5 3 8 6
694
+ M 5 3 4 8
695
+ N 3 8 4 3
696
+ O 9 8 1 4
697
+ P 4 6 8 1
698
+ Q 5 9 7 2
699
+ R 7 3 8 9
700
+ S 9 6 2 9
701
+ T 8 3 4 8
702
+ U 6 8 6 5
703
+ V 6 3 3 5
704
+ W 5 9 6 8
705
+ X 5 4 5 3
706
+ Y 1 5 2 2
707
+ A 2 2 6 3
708
+ B 5 7 8 6
709
+ C 7 7 1 6
710
+ D 6 7 9 7
711
+ E 1 5 7 7
712
+ F 8 5 4 1
713
+ G 6 8 7 1
714
+ H 1 3 8 4
715
+ I 6 5 4 8
716
+ J 4 3 2 7
717
+ K 6 4 6 5
718
+ L 7 2 4 5
719
+ M 1 3 8 3
720
+ N 4 4 3 3
721
+ O 8 4 1 5
722
+ P 5 3 8 2
723
+ Q 5 1 5 1
724
+ R 3 4 1 5
725
+ S 6 6 6 7
726
+ T 7 1 9 3
727
+ U 6 5 1 8
728
+ V 1 3 7 9
729
+ W 6 4 1 2
730
+ X 6 8 2 5
731
+ Y 4 1 5 8
732
+ A 8 2 1 4
733
+ B 7 7 3 8
734
+ C 3 5 8 8
735
+ D 8 2 4 4
736
+ E 4 4 5 1
737
+ F 9 9 2 3
738
+ G 2 9 9 5
739
+ H 2 2 8 3
740
+ I 8 9 5 8
741
+ J 6 9 2 7
742
+ K 7 4 9 7
743
+ L 8 9 2 3
744
+ M 1 4 3 6
745
+ N 5 6 8 5
746
+ O 4 7 1 6
747
+ P 6 8 5 1
748
+ Q 2 9 6 4
749
+ R 2 4 8 2
750
+ S 1 3 5 1
751
+ T 2 5 3 6
752
+ U 7 7 4 7
753
+ V 3 7 3 9
754
+ W 7 6 4 1
755
+ X 3 8 5 2
756
+ Y 2 3 2 6
757
+ A 2 6 8 4
758
+ B 6 8 3 3
759
+ C 4 1 6 9
760
+ D 8 4 7 3
761
+ E 2 5 7 4
762
+ F 1 3 6 2
763
+ G 2 8 6 6
764
+ H 3 6 6 9
765
+ I 9 6 5 3
766
+ J 3 8 6 4
767
+ K 7 7 8 7
768
+ L 3 2 2 2
769
+ M 6 5 7 9
770
+ N 3 9 6 5
771
+ O 6 2 4 1
772
+ P 1 7 8 6
773
+ Q 4 5 5 8
774
+ R 3 7 7 1
775
+ S 8 1 2 1
776
+ T 1 3 9 8
777
+ U 3 2 7 6
778
+ V 9 8 1 3
779
+ W 4 5 4 1
780
+ X 6 1 6 5
781
+ Y 3 1 7 1
782
+ A 8 7 6 2
783
+ B 7 1 3 2
784
+ C 6 1 2 5
785
+ D 9 6 8 5
786
+ E 9 1 2 5
787
+ F 3 8 6 2
788
+ G 5 7 7 6
789
+ H 3 7 9 8
790
+ I 9 7 1 1
791
+ J 6 2 5 1
792
+ K 6 1 3 1
793
+ L 6 5 6 2
794
+ M 7 4 4 7
795
+ N 1 1 8 3
796
+ O 4 4 3 3
797
+ P 6 1 3 6
798
+ Q 4 3 8 4
799
+ R 7 6 8 6
800
+ S 1 1 4 6
801
+ T 9 1 7 4
802
+ U 6 4 7 4
803
+ V 9 7 9 6
804
+ W 5 6 2 6
805
+ X 3 7 6 1
806
+ Y 9 2 3 4
807
+ 300
808
+ P3=2
809
+ P3=2
810
+ P4=8
811
+ P3=6
812
+ P2=1
813
+ P2=7
814
+ P2=9
815
+ P2=4
816
+ P3=2
817
+ P3=1
818
+ P4=4
819
+ P2=6
820
+ P4=8
821
+ P1=5
822
+ P1=1
823
+ P4=5
824
+ P4=1
825
+ P3=1
826
+ P4=8
827
+ P4=3
828
+ P1=2
829
+ P3=9
830
+ P1=2
831
+ P3=2
832
+ P2=1
833
+ P4=3
834
+ P4=2
835
+ P2=2
836
+ P1=8
837
+ P3=1
838
+ P3=2
839
+ P1=1
840
+ P2=8
841
+ P2=3
842
+ P1=1
843
+ P4=8
844
+ P4=2
845
+ P4=1
846
+ P1=4
847
+ P3=6
848
+ P3=2
849
+ P3=3
850
+ P4=9
851
+ P2=9
852
+ P2=6
853
+ P2=7
854
+ P1=2
855
+ P2=2
856
+ P2=2
857
+ P4=2
858
+ P3=3
859
+ P1=2
860
+ P1=1
861
+ P3=6
862
+ P2=2
863
+ P3=6
864
+ P2=2
865
+ P1=5
866
+ P3=9
867
+ P1=5
868
+ P2=6
869
+ P4=9
870
+ P2=9
871
+ P1=2
872
+ P1=2
873
+ P4=2
874
+ P3=2
875
+ P2=9
876
+ P2=9
877
+ P4=9
878
+ P4=8
879
+ P3=3
880
+ P4=4
881
+ P4=1
882
+ P1=8
883
+ P2=4
884
+ P1=1
885
+ P3=1
886
+ P2=2
887
+ P4=4
888
+ P1=2
889
+ P2=9
890
+ P3=2
891
+ P3=1
892
+ P4=4
893
+ P4=3
894
+ P4=9
895
+ P2=3
896
+ P4=8
897
+ P4=4
898
+ P3=1
899
+ P2=3
900
+ P2=3
901
+ P2=4
902
+ P2=3
903
+ P1=7
904
+ P3=2
905
+ P1=2
906
+ P4=5
907
+ P1=7
908
+ P1=9
909
+ P2=9
910
+ P2=2
911
+ P2=2
912
+ P1=2
913
+ P3=3
914
+ P3=2
915
+ P1=1
916
+ P1=4
917
+ P3=2
918
+ P1=7
919
+ P1=2
920
+ P4=3
921
+ P3=3
922
+ P3=3
923
+ P1=4
924
+ P4=3
925
+ P3=2
926
+ P2=2
927
+ P2=9
928
+ P1=5
929
+ P2=3
930
+ P2=1
931
+ P3=9
932
+ P2=3
933
+ P4=3
934
+ P3=3
935
+ P4=9
936
+ P4=2
937
+ P3=9
938
+ P2=4
939
+ P3=2
940
+ P4=8
941
+ P3=1
942
+ P1=2
943
+ P4=4
944
+ P2=9
945
+ P4=8
946
+ P3=3
947
+ P2=2
948
+ P2=6
949
+ P1=7
950
+ P3=2
951
+ P4=2
952
+ P1=1
953
+ P3=1
954
+ P3=6
955
+ P4=2
956
+ P2=6
957
+ P2=2
958
+ P2=6
959
+ P2=3
960
+ P3=3
961
+ P3=2
962
+ P4=2
963
+ P3=9
964
+ P1=2
965
+ P2=3
966
+ P1=2
967
+ P2=2
968
+ P1=7
969
+ P3=3
970
+ P1=7
971
+ P2=6
972
+ P1=5
973
+ P4=5
974
+ P2=2
975
+ P2=3
976
+ P1=7
977
+ P3=2
978
+ P3=2
979
+ P4=4
980
+ P4=9
981
+ P3=9
982
+ P2=7
983
+ P3=3
984
+ P1=1
985
+ P3=1
986
+ P3=3
987
+ P2=3
988
+ P2=3
989
+ P1=8
990
+ P4=2
991
+ P1=8
992
+ P1=2
993
+ P1=5
994
+ P3=2
995
+ P2=9
996
+ P2=2
997
+ P2=4
998
+ P1=2
999
+ P4=9
1000
+ P1=5
1001
+ P2=6
1002
+ P2=9
1003
+ P1=1
1004
+ P4=4
1005
+ P2=6
1006
+ P4=8
1007
+ P4=3
1008
+ P3=2
1009
+ P2=4
1010
+ P4=4
1011
+ P2=2
1012
+ P1=1
1013
+ P2=3
1014
+ P1=1
1015
+ P4=8
1016
+ P1=8
1017
+ P2=8
1018
+ P3=9
1019
+ P2=2
1020
+ P2=6
1021
+ P2=9
1022
+ P4=4
1023
+ P3=2
1024
+ P3=1
1025
+ P1=8
1026
+ P1=4
1027
+ P2=2
1028
+ P2=2
1029
+ P4=9
1030
+ P2=3
1031
+ P3=9
1032
+ P3=3
1033
+ P1=9
1034
+ P4=8
1035
+ P4=8
1036
+ P3=2
1037
+ P1=7
1038
+ P4=8
1039
+ P1=9
1040
+ P3=1
1041
+ P2=6
1042
+ P2=6
1043
+ P4=2
1044
+ P2=9
1045
+ P3=2
1046
+ P3=9
1047
+ P1=4
1048
+ P3=2
1049
+ P2=4
1050
+ P2=9
1051
+ P1=5
1052
+ P2=8
1053
+ P4=9
1054
+ P4=9
1055
+ P4=5
1056
+ P4=8
1057
+ P2=2
1058
+ P3=1
1059
+ P4=2
1060
+ P3=2
1061
+ P2=2
1062
+ P2=9
1063
+ P3=2
1064
+ P1=2
1065
+ P4=5
1066
+ P1=5
1067
+ P1=7
1068
+ P2=3
1069
+ P4=5
1070
+ P4=3
1071
+ P1=4
1072
+ P3=2
1073
+ P3=2
1074
+ P3=1
1075
+ P1=7
1076
+ P2=3
1077
+ P4=2
1078
+ P2=6
1079
+ P2=2
1080
+ P1=7
1081
+ P1=7
1082
+ P2=2
1083
+ P3=2
1084
+ P2=8
1085
+ P3=9
1086
+ P2=2
1087
+ P2=8
1088
+ P3=2
1089
+ P2=4
1090
+ P1=1
1091
+ P3=9
1092
+ P4=9
1093
+ P4=5
1094
+ P1=7
1095
+ P1=5
1096
+ P2=2
1097
+ P1=7
1098
+ P1=1
1099
+ P1=5
1100
+ P1=1
1101
+ P2=8
1102
+ P2=1
1103
+ P3=9
1104
+ P1=1
1105
+ P1=2
1106
+ P4=5
1107
+ P3=6