@cyrilverloop/codingame-configuration 1.19.0 → 1.21.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 (421) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/config/easy/ChocolateBarCut/code/CGCode.cpp +24 -0
  3. package/config/easy/ChocolateBarCut/code/CGCode.java +22 -0
  4. package/config/easy/ChocolateBarCut/code/CGCode.js +13 -0
  5. package/config/easy/ChocolateBarCut/code/CGCode.php +14 -0
  6. package/config/easy/ChocolateBarCut/code/CGCode.ts +13 -0
  7. package/config/easy/ChocolateBarCut/config.json +48 -0
  8. package/config/easy/ChocolateBarCut/input/01 - Small.txt +7 -0
  9. package/config/easy/ChocolateBarCut/input/02 - Line.txt +8 -0
  10. package/config/easy/ChocolateBarCut/input/03 - Without vertices.txt +9 -0
  11. package/config/easy/ChocolateBarCut/input/04 - Some vertices.txt +11 -0
  12. package/config/easy/ChocolateBarCut/input/05 - Big.txt +11 -0
  13. package/config/easy/ChocolateBarCut/input/06 - Huge.txt +11 -0
  14. package/config/easy/ChocolateBarCut/input/07 - Astronomical.txt +11 -0
  15. package/config/easy/ChocolateBarCut/input/08 - Gargantuan.txt +51 -0
  16. package/config/easy/ChocolateBarCut/output/01 - Small.txt +6 -0
  17. package/config/easy/ChocolateBarCut/output/02 - Line.txt +7 -0
  18. package/config/easy/ChocolateBarCut/output/03 - Without vertices.txt +8 -0
  19. package/config/easy/ChocolateBarCut/output/04 - Some vertices.txt +10 -0
  20. package/config/easy/ChocolateBarCut/output/05 - Big.txt +10 -0
  21. package/config/easy/ChocolateBarCut/output/06 - Huge.txt +10 -0
  22. package/config/easy/ChocolateBarCut/output/07 - Astronomical.txt +10 -0
  23. package/config/easy/ChocolateBarCut/output/08 - Gargantuan.txt +50 -0
  24. package/config/easy/DiagonalAchoo/code/CGCode.cpp +29 -0
  25. package/config/easy/DiagonalAchoo/code/CGCode.java +29 -0
  26. package/config/easy/DiagonalAchoo/code/CGCode.js +16 -0
  27. package/config/easy/DiagonalAchoo/code/CGCode.php +19 -0
  28. package/config/easy/DiagonalAchoo/code/CGCode.ts +16 -0
  29. package/config/easy/DiagonalAchoo/config.json +43 -0
  30. package/config/easy/DiagonalAchoo/input/01 - Easy Comparision.txt +12 -0
  31. package/config/easy/DiagonalAchoo/input/02 - Simulation Chamber - I.txt +42 -0
  32. package/config/easy/DiagonalAchoo/input/03 - Simulation Chamber - II.txt +152 -0
  33. package/config/easy/DiagonalAchoo/input/04 - Large Scale Simulation.txt +502 -0
  34. package/config/easy/DiagonalAchoo/input/05 - One Man Chambers.txt +5 -0
  35. package/config/easy/DiagonalAchoo/input/06 - Weird Patterns - I.txt +22 -0
  36. package/config/easy/DiagonalAchoo/input/07 - Weird Patterns - II.txt +32 -0
  37. package/config/easy/DiagonalAchoo/output/01 - Easy Comparision.txt +6 -0
  38. package/config/easy/DiagonalAchoo/output/02 - Simulation Chamber - I.txt +5 -0
  39. package/config/easy/DiagonalAchoo/output/03 - Simulation Chamber - II.txt +7 -0
  40. package/config/easy/DiagonalAchoo/output/04 - Large Scale Simulation.txt +11 -0
  41. package/config/easy/DiagonalAchoo/output/05 - One Man Chambers.txt +2 -0
  42. package/config/easy/DiagonalAchoo/output/06 - Weird Patterns - I.txt +11 -0
  43. package/config/easy/DiagonalAchoo/output/07 - Weird Patterns - II.txt +11 -0
  44. package/config/easy/GaussAndTheStolenNumbers/code/CGCode.cpp +21 -0
  45. package/config/easy/GaussAndTheStolenNumbers/code/CGCode.java +18 -0
  46. package/config/easy/GaussAndTheStolenNumbers/code/CGCode.js +8 -0
  47. package/config/easy/GaussAndTheStolenNumbers/code/CGCode.php +9 -0
  48. package/config/easy/GaussAndTheStolenNumbers/code/CGCode.ts +8 -0
  49. package/config/easy/GaussAndTheStolenNumbers/config.json +33 -0
  50. package/config/easy/GaussAndTheStolenNumbers/input/01 - General number.txt +3 -0
  51. package/config/easy/GaussAndTheStolenNumbers/input/02 - Lucky 7.txt +3 -0
  52. package/config/easy/GaussAndTheStolenNumbers/input/03 - Lets go bigger!.txt +3 -0
  53. package/config/easy/GaussAndTheStolenNumbers/input/04 - Extreme ends.txt +3 -0
  54. package/config/easy/GaussAndTheStolenNumbers/input/05 - Middle pair.txt +3 -0
  55. package/config/easy/GaussAndTheStolenNumbers/output/01 - General number.txt +1 -0
  56. package/config/easy/GaussAndTheStolenNumbers/output/02 - Lucky 7.txt +1 -0
  57. package/config/easy/GaussAndTheStolenNumbers/output/03 - Lets go bigger!.txt +1 -0
  58. package/config/easy/GaussAndTheStolenNumbers/output/04 - Extreme ends.txt +1 -0
  59. package/config/easy/GaussAndTheStolenNumbers/output/05 - Middle pair.txt +1 -0
  60. package/config/easy/GrandmasSerialKeys/code/CGCode.cpp +17 -0
  61. package/config/easy/GrandmasSerialKeys/code/CGCode.java +16 -0
  62. package/config/easy/GrandmasSerialKeys/code/CGCode.js +6 -0
  63. package/config/easy/GrandmasSerialKeys/code/CGCode.php +7 -0
  64. package/config/easy/GrandmasSerialKeys/code/CGCode.ts +6 -0
  65. package/config/easy/GrandmasSerialKeys/config.json +43 -0
  66. package/config/easy/GrandmasSerialKeys/input/01 - Easy One.txt +1 -0
  67. package/config/easy/GrandmasSerialKeys/input/02 - Underscores.txt +1 -0
  68. package/config/easy/GrandmasSerialKeys/input/03 - All Characters.txt +1 -0
  69. package/config/easy/GrandmasSerialKeys/input/04 - One Character.txt +1 -0
  70. package/config/easy/GrandmasSerialKeys/input/05 - Looooong One.txt +1 -0
  71. package/config/easy/GrandmasSerialKeys/input/06 - One Key to Another Key.txt +1 -0
  72. package/config/easy/GrandmasSerialKeys/input/07 - Starts with 0.txt +1 -0
  73. package/config/easy/GrandmasSerialKeys/output/01 - Easy One.txt +1 -0
  74. package/config/easy/GrandmasSerialKeys/output/02 - Underscores.txt +1 -0
  75. package/config/easy/GrandmasSerialKeys/output/03 - All Characters.txt +1 -0
  76. package/config/easy/GrandmasSerialKeys/output/04 - One Character.txt +1 -0
  77. package/config/easy/GrandmasSerialKeys/output/05 - Looooong One.txt +1 -0
  78. package/config/easy/GrandmasSerialKeys/output/06 - One Key to Another Key.txt +1 -0
  79. package/config/easy/GrandmasSerialKeys/output/07 - Starts with 0.txt +1 -0
  80. package/config/easy/OrganicCompound/code/CGCode.cpp +22 -0
  81. package/config/easy/OrganicCompound/code/CGCode.java +20 -0
  82. package/config/easy/OrganicCompound/code/CGCode.js +6 -0
  83. package/config/easy/OrganicCompound/code/CGCode.php +12 -0
  84. package/config/easy/OrganicCompound/code/CGCode.ts +11 -0
  85. package/config/easy/OrganicCompound/config.json +93 -0
  86. package/config/easy/OrganicCompound/input/01 - ethane.txt +1 -0
  87. package/config/easy/OrganicCompound/input/02 - butene.txt +1 -0
  88. package/config/easy/OrganicCompound/input/03 - hexanol.txt +1 -0
  89. package/config/easy/OrganicCompound/input/04 - methanoic acid.txt +1 -0
  90. package/config/easy/OrganicCompound/input/05 - decanone.txt +1 -0
  91. package/config/easy/OrganicCompound/input/06 - octanal.txt +1 -0
  92. package/config/easy/OrganicCompound/input/07 - nonane.txt +1 -0
  93. package/config/easy/OrganicCompound/input/08 - pentanol.txt +1 -0
  94. package/config/easy/OrganicCompound/input/09 - octene.txt +1 -0
  95. package/config/easy/OrganicCompound/input/10 - propanoic acid.txt +1 -0
  96. package/config/easy/OrganicCompound/input/11 - methanal.txt +1 -0
  97. package/config/easy/OrganicCompound/input/12 - propanone.txt +1 -0
  98. package/config/easy/OrganicCompound/input/13 - OTHERS (I) - ethyl ethanoate.txt +1 -0
  99. package/config/easy/OrganicCompound/input/14 - OTHERS (II) - ethane-1,2-diol.txt +1 -0
  100. package/config/easy/OrganicCompound/input/15 - OTHERS (III) - Oxalic acid.txt +1 -0
  101. package/config/easy/OrganicCompound/input/16 - OTHERS (IV) - Formamide.txt +1 -0
  102. package/config/easy/OrganicCompound/input/17 - OTHERS (V) - Phenol.txt +1 -0
  103. package/config/easy/OrganicCompound/output/01 - ethane.txt +1 -0
  104. package/config/easy/OrganicCompound/output/02 - butene.txt +1 -0
  105. package/config/easy/OrganicCompound/output/03 - hexanol.txt +1 -0
  106. package/config/easy/OrganicCompound/output/04 - methanoic acid.txt +1 -0
  107. package/config/easy/OrganicCompound/output/05 - decanone.txt +1 -0
  108. package/config/easy/OrganicCompound/output/06 - octanal.txt +1 -0
  109. package/config/easy/OrganicCompound/output/07 - nonane.txt +1 -0
  110. package/config/easy/OrganicCompound/output/08 - pentanol.txt +1 -0
  111. package/config/easy/OrganicCompound/output/09 - octene.txt +1 -0
  112. package/config/easy/OrganicCompound/output/10 - propanoic acid.txt +1 -0
  113. package/config/easy/OrganicCompound/output/11 - methanal.txt +1 -0
  114. package/config/easy/OrganicCompound/output/12 - propanone.txt +1 -0
  115. package/config/easy/OrganicCompound/output/13 - OTHERS (I) - ethyl ethanoate.txt +1 -0
  116. package/config/easy/OrganicCompound/output/14 - OTHERS (II) - ethane-1,2-diol.txt +1 -0
  117. package/config/easy/OrganicCompound/output/15 - OTHERS (III) - Oxalic acid.txt +1 -0
  118. package/config/easy/OrganicCompound/output/16 - OTHERS (IV) - Formamide.txt +1 -0
  119. package/config/easy/OrganicCompound/output/17 - OTHERS (V) - Phenol.txt +1 -0
  120. package/config/easy/OrganicCompounds/config.json +2 -2
  121. package/config/easy/PeaksAndValleysIn2DGrid/code/CGCode.cpp +22 -0
  122. package/config/easy/PeaksAndValleysIn2DGrid/code/CGCode.java +23 -0
  123. package/config/easy/PeaksAndValleysIn2DGrid/code/CGCode.js +10 -0
  124. package/config/easy/PeaksAndValleysIn2DGrid/code/CGCode.php +12 -0
  125. package/config/easy/PeaksAndValleysIn2DGrid/code/CGCode.ts +10 -0
  126. package/config/easy/PeaksAndValleysIn2DGrid/config.json +43 -0
  127. package/config/easy/PeaksAndValleysIn2DGrid/input/01 - test 1.txt +5 -0
  128. package/config/easy/PeaksAndValleysIn2DGrid/input/02 - test 2.txt +6 -0
  129. package/config/easy/PeaksAndValleysIn2DGrid/input/03 - test 3.txt +7 -0
  130. package/config/easy/PeaksAndValleysIn2DGrid/input/04 - test 4.txt +9 -0
  131. package/config/easy/PeaksAndValleysIn2DGrid/input/05 - test 5.txt +11 -0
  132. package/config/easy/PeaksAndValleysIn2DGrid/input/06 - test 6.txt +11 -0
  133. package/config/easy/PeaksAndValleysIn2DGrid/input/07 - test 7.txt +11 -0
  134. package/config/easy/PeaksAndValleysIn2DGrid/output/01 - test 1.txt +2 -0
  135. package/config/easy/PeaksAndValleysIn2DGrid/output/02 - test 2.txt +2 -0
  136. package/config/easy/PeaksAndValleysIn2DGrid/output/03 - test 3.txt +2 -0
  137. package/config/easy/PeaksAndValleysIn2DGrid/output/04 - test 4.txt +2 -0
  138. package/config/easy/PeaksAndValleysIn2DGrid/output/05 - test 5.txt +2 -0
  139. package/config/easy/PeaksAndValleysIn2DGrid/output/06 - test 6.txt +2 -0
  140. package/config/easy/PeaksAndValleysIn2DGrid/output/07 - test 7.txt +2 -0
  141. package/config/easy/SeeingSquares/code/CGCode.cpp +22 -0
  142. package/config/easy/SeeingSquares/code/CGCode.java +23 -0
  143. package/config/easy/SeeingSquares/code/CGCode.js +11 -0
  144. package/config/easy/SeeingSquares/code/CGCode.php +11 -0
  145. package/config/easy/SeeingSquares/code/CGCode.ts +11 -0
  146. package/config/easy/SeeingSquares/config.json +98 -0
  147. package/config/easy/SeeingSquares/input/01 - Singular Square.txt +4 -0
  148. package/config/easy/SeeingSquares/input/02 - Side By Side.txt +4 -0
  149. package/config/easy/SeeingSquares/input/03 - Some Missing Sides.txt +6 -0
  150. package/config/easy/SeeingSquares/input/04 - Slightly Bigger.txt +6 -0
  151. package/config/easy/SeeingSquares/input/05 - Snaking Sequence.txt +8 -0
  152. package/config/easy/SeeingSquares/input/06 - Squares On Squares.txt +6 -0
  153. package/config/easy/SeeingSquares/input/07 - Spiralling.txt +16 -0
  154. package/config/easy/SeeingSquares/input/08 - Segmentation.txt +14 -0
  155. package/config/easy/SeeingSquares/input/09 - Squished.txt +10 -0
  156. package/config/easy/SeeingSquares/input/10 - So Many.txt +24 -0
  157. package/config/easy/SeeingSquares/input/11 - Slightly Off.txt +12 -0
  158. package/config/easy/SeeingSquares/input/12 - Slightly Smaller.txt +7 -0
  159. package/config/easy/SeeingSquares/input/13 - Statue.txt +16 -0
  160. package/config/easy/SeeingSquares/input/14 - Some Abstraction.txt +39 -0
  161. package/config/easy/SeeingSquares/input/15 - Spray And Pray.txt +58 -0
  162. package/config/easy/SeeingSquares/input/16 - Somehow The Lines Are Visible.txt +41 -0
  163. package/config/easy/SeeingSquares/input/17 - Stripes And Spots.txt +85 -0
  164. package/config/easy/SeeingSquares/input/18 - So Many!!.txt +99 -0
  165. package/config/easy/SeeingSquares/output/01 - Singular Square.txt +1 -0
  166. package/config/easy/SeeingSquares/output/02 - Side By Side.txt +1 -0
  167. package/config/easy/SeeingSquares/output/03 - Some Missing Sides.txt +1 -0
  168. package/config/easy/SeeingSquares/output/04 - Slightly Bigger.txt +1 -0
  169. package/config/easy/SeeingSquares/output/05 - Snaking Sequence.txt +1 -0
  170. package/config/easy/SeeingSquares/output/06 - Squares On Squares.txt +1 -0
  171. package/config/easy/SeeingSquares/output/07 - Spiralling.txt +1 -0
  172. package/config/easy/SeeingSquares/output/08 - Segmentation.txt +1 -0
  173. package/config/easy/SeeingSquares/output/09 - Squished.txt +1 -0
  174. package/config/easy/SeeingSquares/output/10 - So Many.txt +1 -0
  175. package/config/easy/SeeingSquares/output/11 - Slightly Off.txt +1 -0
  176. package/config/easy/SeeingSquares/output/12 - Slightly Smaller.txt +1 -0
  177. package/config/easy/SeeingSquares/output/13 - Statue.txt +1 -0
  178. package/config/easy/SeeingSquares/output/14 - Some Abstraction.txt +1 -0
  179. package/config/easy/SeeingSquares/output/15 - Spray And Pray.txt +1 -0
  180. package/config/easy/SeeingSquares/output/16 - Somehow The Lines Are Visible.txt +1 -0
  181. package/config/easy/SeeingSquares/output/17 - Stripes And Spots.txt +1 -0
  182. package/config/easy/SeeingSquares/output/18 - So Many!!.txt +1 -0
  183. package/config/easy/SynchronizedScrambles/code/CGCode.cpp +18 -0
  184. package/config/easy/SynchronizedScrambles/code/CGCode.java +17 -0
  185. package/config/easy/SynchronizedScrambles/code/CGCode.js +8 -0
  186. package/config/easy/SynchronizedScrambles/code/CGCode.php +7 -0
  187. package/config/easy/SynchronizedScrambles/code/CGCode.ts +8 -0
  188. package/config/easy/SynchronizedScrambles/config.json +33 -0
  189. package/config/easy/SynchronizedScrambles/input/01 - Just a minute.txt +1 -0
  190. package/config/easy/SynchronizedScrambles/input/02 - Two instants per day.txt +1 -0
  191. package/config/easy/SynchronizedScrambles/input/03 - 10-minute window.txt +1 -0
  192. package/config/easy/SynchronizedScrambles/input/04 - Many random points.txt +1 -0
  193. package/config/easy/SynchronizedScrambles/input/05 - Almost an hour.txt +1 -0
  194. package/config/easy/SynchronizedScrambles/output/01 - Just a minute.txt +1 -0
  195. package/config/easy/SynchronizedScrambles/output/02 - Two instants per day.txt +2 -0
  196. package/config/easy/SynchronizedScrambles/output/03 - 10-minute window.txt +10 -0
  197. package/config/easy/SynchronizedScrambles/output/04 - Many random points.txt +16 -0
  198. package/config/easy/SynchronizedScrambles/output/05 - Almost an hour.txt +59 -0
  199. package/config/easy/TheLGameCountingBoardStates/code/CGCode.cpp +19 -0
  200. package/config/easy/TheLGameCountingBoardStates/code/CGCode.java +18 -0
  201. package/config/easy/TheLGameCountingBoardStates/code/CGCode.js +9 -0
  202. package/config/easy/TheLGameCountingBoardStates/code/CGCode.php +7 -0
  203. package/config/easy/TheLGameCountingBoardStates/code/CGCode.ts +9 -0
  204. package/config/easy/TheLGameCountingBoardStates/config.json +43 -0
  205. package/config/easy/TheLGameCountingBoardStates/input/01 - Simple 3x3.txt +1 -0
  206. package/config/easy/TheLGameCountingBoardStates/input/02 - Slightly larger.txt +1 -0
  207. package/config/easy/TheLGameCountingBoardStates/input/03 - Height gt Width.txt +1 -0
  208. package/config/easy/TheLGameCountingBoardStates/input/04 - Width gt Height.txt +1 -0
  209. package/config/easy/TheLGameCountingBoardStates/input/05 - Too many blockers.txt +1 -0
  210. package/config/easy/TheLGameCountingBoardStates/input/06 - Many configurations.txt +1 -0
  211. package/config/easy/TheLGameCountingBoardStates/input/07 - That/342/200/231s a lot!.txt" +1 -0
  212. package/config/easy/TheLGameCountingBoardStates/output/01 - Simple 3x3.txt +1 -0
  213. package/config/easy/TheLGameCountingBoardStates/output/02 - Slightly larger.txt +1 -0
  214. package/config/easy/TheLGameCountingBoardStates/output/03 - Height gt Width.txt +1 -0
  215. package/config/easy/TheLGameCountingBoardStates/output/04 - Width gt Height.txt +1 -0
  216. package/config/easy/TheLGameCountingBoardStates/output/05 - Too many blockers.txt +1 -0
  217. package/config/easy/TheLGameCountingBoardStates/output/06 - Many configurations.txt +1 -0
  218. package/config/easy/TheLGameCountingBoardStates/output/07 - That/342/200/231s a lot!.txt" +1 -0
  219. package/config/hard/NRamanujanPrime/code/CGCode.cpp +17 -0
  220. package/config/hard/NRamanujanPrime/code/CGCode.java +16 -0
  221. package/config/hard/NRamanujanPrime/code/CGCode.js +6 -0
  222. package/config/hard/NRamanujanPrime/code/CGCode.php +7 -0
  223. package/config/hard/NRamanujanPrime/code/CGCode.ts +6 -0
  224. package/config/hard/NRamanujanPrime/config.json +48 -0
  225. package/config/hard/NRamanujanPrime/input/01 - test 1.txt +1 -0
  226. package/config/hard/NRamanujanPrime/input/02 - test 2.txt +1 -0
  227. package/config/hard/NRamanujanPrime/input/03 - test 3.txt +1 -0
  228. package/config/hard/NRamanujanPrime/input/04 - test 4.txt +1 -0
  229. package/config/hard/NRamanujanPrime/input/05 - test 5.txt +1 -0
  230. package/config/hard/NRamanujanPrime/input/06 - test 6.txt +1 -0
  231. package/config/hard/NRamanujanPrime/input/07 - test 7.txt +1 -0
  232. package/config/hard/NRamanujanPrime/input/08 - test 8.txt +1 -0
  233. package/config/hard/NRamanujanPrime/output/01 - test 1.txt +1 -0
  234. package/config/hard/NRamanujanPrime/output/02 - test 2.txt +1 -0
  235. package/config/hard/NRamanujanPrime/output/03 - test 3.txt +1 -0
  236. package/config/hard/NRamanujanPrime/output/04 - test 4.txt +1 -0
  237. package/config/hard/NRamanujanPrime/output/05 - test 5.txt +1 -0
  238. package/config/hard/NRamanujanPrime/output/06 - test 6.txt +1 -0
  239. package/config/hard/NRamanujanPrime/output/07 - test 7.txt +1 -0
  240. package/config/hard/NRamanujanPrime/output/08 - test 8.txt +1 -0
  241. package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.cpp +22 -0
  242. package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.java +19 -0
  243. package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.js +9 -0
  244. package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.php +10 -0
  245. package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.ts +9 -0
  246. package/config/medium/AgentXMission3TheBottleInTheSea/config.json +28 -0
  247. package/config/medium/AgentXMission3TheBottleInTheSea/input/01 - Test 1.txt +3 -0
  248. package/config/medium/AgentXMission3TheBottleInTheSea/input/02 - Test 2.txt +3 -0
  249. package/config/medium/AgentXMission3TheBottleInTheSea/input/03 - Big message.txt +3 -0
  250. package/config/medium/AgentXMission3TheBottleInTheSea/input/04 - Realy big message with random word.txt +3 -0
  251. package/config/medium/AgentXMission3TheBottleInTheSea/output/01 - Test 1.txt +2 -0
  252. package/config/medium/AgentXMission3TheBottleInTheSea/output/02 - Test 2.txt +2 -0
  253. package/config/medium/AgentXMission3TheBottleInTheSea/output/03 - Big message.txt +2 -0
  254. package/config/medium/AgentXMission3TheBottleInTheSea/output/04 - Realy big message with random word.txt +2 -0
  255. package/config/medium/IntegerPairsOfABAB/code/CGCode.cpp +17 -0
  256. package/config/medium/IntegerPairsOfABAB/code/CGCode.java +16 -0
  257. package/config/medium/IntegerPairsOfABAB/code/CGCode.js +6 -0
  258. package/config/medium/IntegerPairsOfABAB/code/CGCode.php +7 -0
  259. package/config/medium/IntegerPairsOfABAB/code/CGCode.ts +6 -0
  260. package/config/medium/IntegerPairsOfABAB/config.json +93 -0
  261. package/config/medium/IntegerPairsOfABAB/input/01 - Example.txt +1 -0
  262. package/config/medium/IntegerPairsOfABAB/input/02 - Small Prime.txt +1 -0
  263. package/config/medium/IntegerPairsOfABAB/input/03 - Small Composite.txt +1 -0
  264. package/config/medium/IntegerPairsOfABAB/input/04 - Neither Prime nor Composite.txt +1 -0
  265. package/config/medium/IntegerPairsOfABAB/input/05 - p^2.txt +1 -0
  266. package/config/medium/IntegerPairsOfABAB/input/06 - pq.txt +1 -0
  267. package/config/medium/IntegerPairsOfABAB/input/07 - p^2q.txt +1 -0
  268. package/config/medium/IntegerPairsOfABAB/input/08 - Medium Prime.txt +1 -0
  269. package/config/medium/IntegerPairsOfABAB/input/09 - Medium Highly Composite.txt +1 -0
  270. package/config/medium/IntegerPairsOfABAB/input/10 - p^2q^2.txt +1 -0
  271. package/config/medium/IntegerPairsOfABAB/input/11 - pqr.txt +1 -0
  272. package/config/medium/IntegerPairsOfABAB/input/12 - Large Prime.txt +1 -0
  273. package/config/medium/IntegerPairsOfABAB/input/13 - Large Highly Composite.txt +1 -0
  274. package/config/medium/IntegerPairsOfABAB/input/14 - Very Large Prime.txt +1 -0
  275. package/config/medium/IntegerPairsOfABAB/input/15 - Very Large Highly Composite.txt +1 -0
  276. package/config/medium/IntegerPairsOfABAB/input/16 - Many Unique Prime Factors.txt +1 -0
  277. package/config/medium/IntegerPairsOfABAB/input/17 - Largest.txt +1 -0
  278. package/config/medium/IntegerPairsOfABAB/output/01 - Example.txt +1 -0
  279. package/config/medium/IntegerPairsOfABAB/output/02 - Small Prime.txt +1 -0
  280. package/config/medium/IntegerPairsOfABAB/output/03 - Small Composite.txt +1 -0
  281. package/config/medium/IntegerPairsOfABAB/output/04 - Neither Prime nor Composite.txt +1 -0
  282. package/config/medium/IntegerPairsOfABAB/output/05 - p^2.txt +1 -0
  283. package/config/medium/IntegerPairsOfABAB/output/06 - pq.txt +1 -0
  284. package/config/medium/IntegerPairsOfABAB/output/07 - p^2q.txt +1 -0
  285. package/config/medium/IntegerPairsOfABAB/output/08 - Medium Prime.txt +1 -0
  286. package/config/medium/IntegerPairsOfABAB/output/09 - Medium Highly Composite.txt +1 -0
  287. package/config/medium/IntegerPairsOfABAB/output/10 - p^2q^2.txt +1 -0
  288. package/config/medium/IntegerPairsOfABAB/output/11 - pqr.txt +1 -0
  289. package/config/medium/IntegerPairsOfABAB/output/12 - Large Prime.txt +1 -0
  290. package/config/medium/IntegerPairsOfABAB/output/13 - Large Highly Composite.txt +1 -0
  291. package/config/medium/IntegerPairsOfABAB/output/14 - Very Large Prime.txt +1 -0
  292. package/config/medium/IntegerPairsOfABAB/output/15 - Very Large Highly Composite.txt +1 -0
  293. package/config/medium/IntegerPairsOfABAB/output/16 - Many Unique Prime Factors.txt +1 -0
  294. package/config/medium/IntegerPairsOfABAB/output/17 - Largest.txt +1 -0
  295. package/config/medium/MovingTarget/code/CGCode.cpp +30 -0
  296. package/config/medium/MovingTarget/code/CGCode.java +26 -0
  297. package/config/medium/MovingTarget/code/CGCode.js +19 -0
  298. package/config/medium/MovingTarget/code/CGCode.php +11 -0
  299. package/config/medium/MovingTarget/code/CGCode.ts +19 -0
  300. package/config/medium/MovingTarget/config.json +53 -0
  301. package/config/medium/MovingTarget/input/01 - Perpendicular case.txt +4 -0
  302. package/config/medium/MovingTarget/input/02 - Barely a hit.txt +4 -0
  303. package/config/medium/MovingTarget/input/03 - Too slow.txt +4 -0
  304. package/config/medium/MovingTarget/input/04 - Plane at rest.txt +4 -0
  305. package/config/medium/MovingTarget/input/05 - Two solutions.txt +4 -0
  306. package/config/medium/MovingTarget/input/06 - Random 1.txt +4 -0
  307. package/config/medium/MovingTarget/input/07 - Random 2.txt +4 -0
  308. package/config/medium/MovingTarget/input/08 - Random 3.txt +4 -0
  309. package/config/medium/MovingTarget/input/09 - Random 4.txt +4 -0
  310. package/config/medium/MovingTarget/output/01 - Perpendicular case.txt +2 -0
  311. package/config/medium/MovingTarget/output/02 - Barely a hit.txt +2 -0
  312. package/config/medium/MovingTarget/output/03 - Too slow.txt +1 -0
  313. package/config/medium/MovingTarget/output/04 - Plane at rest.txt +2 -0
  314. package/config/medium/MovingTarget/output/05 - Two solutions.txt +2 -0
  315. package/config/medium/MovingTarget/output/06 - Random 1.txt +1 -0
  316. package/config/medium/MovingTarget/output/07 - Random 2.txt +2 -0
  317. package/config/medium/MovingTarget/output/08 - Random 3.txt +2 -0
  318. package/config/medium/MovingTarget/output/09 - Random 4.txt +2 -0
  319. package/config/medium/NDimensionalMaze/code/CGCode.cpp +29 -0
  320. package/config/medium/NDimensionalMaze/code/CGCode.java +29 -0
  321. package/config/medium/NDimensionalMaze/code/CGCode.js +13 -0
  322. package/config/medium/NDimensionalMaze/code/CGCode.php +15 -0
  323. package/config/medium/NDimensionalMaze/code/CGCode.ts +13 -0
  324. package/config/medium/NDimensionalMaze/config.json +53 -0
  325. package/config/medium/NDimensionalMaze/input/01 - Simple 3D.txt +8 -0
  326. package/config/medium/NDimensionalMaze/input/02 - Simple 2D.txt +16 -0
  327. package/config/medium/NDimensionalMaze/input/03 - 4D.txt +83 -0
  328. package/config/medium/NDimensionalMaze/input/04 - Hyper-hypercube.txt +6 -0
  329. package/config/medium/NDimensionalMaze/input/05 - 1D.txt +7 -0
  330. package/config/medium/NDimensionalMaze/input/06 - 3D NO PATH.txt +7 -0
  331. package/config/medium/NDimensionalMaze/input/07 - Blocked.txt +11 -0
  332. package/config/medium/NDimensionalMaze/input/08 - 7D.txt +7 -0
  333. package/config/medium/NDimensionalMaze/input/09 - 8D.txt +8 -0
  334. package/config/medium/NDimensionalMaze/output/01 - Simple 3D.txt +1 -0
  335. package/config/medium/NDimensionalMaze/output/02 - Simple 2D.txt +1 -0
  336. package/config/medium/NDimensionalMaze/output/03 - 4D.txt +1 -0
  337. package/config/medium/NDimensionalMaze/output/04 - Hyper-hypercube.txt +1 -0
  338. package/config/medium/NDimensionalMaze/output/05 - 1D.txt +1 -0
  339. package/config/medium/NDimensionalMaze/output/06 - 3D NO PATH.txt +1 -0
  340. package/config/medium/NDimensionalMaze/output/07 - Blocked.txt +1 -0
  341. package/config/medium/NDimensionalMaze/output/08 - 7D.txt +1 -0
  342. package/config/medium/NDimensionalMaze/output/09 - 8D.txt +1 -0
  343. package/config/medium/SimpleCPUEmulation1/code/CGCode.cpp +17 -0
  344. package/config/medium/SimpleCPUEmulation1/code/CGCode.java +16 -0
  345. package/config/medium/SimpleCPUEmulation1/code/CGCode.js +6 -0
  346. package/config/medium/SimpleCPUEmulation1/code/CGCode.php +7 -0
  347. package/config/medium/SimpleCPUEmulation1/code/CGCode.ts +6 -0
  348. package/config/medium/SimpleCPUEmulation1/config.json +28 -0
  349. package/config/medium/SimpleCPUEmulation1/input/01 - 5+5.txt +1 -0
  350. package/config/medium/SimpleCPUEmulation1/input/02 - (11-6+2) pipe 8.txt +1 -0
  351. package/config/medium/SimpleCPUEmulation1/input/03 - Overflow 145+192.txt +1 -0
  352. package/config/medium/SimpleCPUEmulation1/input/04 - 15-18.txt +1 -0
  353. package/config/medium/SimpleCPUEmulation1/output/01 - 5+5.txt +1 -0
  354. package/config/medium/SimpleCPUEmulation1/output/02 - (11-6+2) pipe 8.txt +1 -0
  355. package/config/medium/SimpleCPUEmulation1/output/03 - Overflow 145+192.txt +1 -0
  356. package/config/medium/SimpleCPUEmulation1/output/04 - 15-18.txt +1 -0
  357. package/config/medium/TiredPacMan/code/CGCode.cpp +24 -0
  358. package/config/medium/TiredPacMan/code/CGCode.java +24 -0
  359. package/config/medium/TiredPacMan/code/CGCode.js +12 -0
  360. package/config/medium/TiredPacMan/code/CGCode.php +12 -0
  361. package/config/medium/TiredPacMan/code/CGCode.ts +12 -0
  362. package/config/medium/TiredPacMan/config.json +98 -0
  363. package/config/medium/TiredPacMan/input/01 - Basic Grid.txt +11 -0
  364. package/config/medium/TiredPacMan/input/02 - Basic Grid with Barriers.txt +11 -0
  365. package/config/medium/TiredPacMan/input/03 - Ghosts Gatekeeping.txt +15 -0
  366. package/config/medium/TiredPacMan/input/04 - Ghosts Extreme Gatekeeping.txt +15 -0
  367. package/config/medium/TiredPacMan/input/05 - No Fruit.txt +6 -0
  368. package/config/medium/TiredPacMan/input/06 - No Energy.txt +49 -0
  369. package/config/medium/TiredPacMan/input/07 - No Moves.txt +56 -0
  370. package/config/medium/TiredPacMan/input/08 - Don/342/200/231t Be Greedy.txt" +13 -0
  371. package/config/medium/TiredPacMan/input/09 - Basic Wrap.txt +16 -0
  372. package/config/medium/TiredPacMan/input/10 - Empty Grid.txt +4 -0
  373. package/config/medium/TiredPacMan/input/11 - Medium Grid.txt +27 -0
  374. package/config/medium/TiredPacMan/input/12 - Large Grid.txt +62 -0
  375. package/config/medium/TiredPacMan/input/13 - All Fruit Eaten.txt +9 -0
  376. package/config/medium/TiredPacMan/input/14 - Dead Ends.txt +9 -0
  377. package/config/medium/TiredPacMan/input/15 - Ultimate Wrap.txt +9 -0
  378. package/config/medium/TiredPacMan/input/16 - Complex 1.txt +22 -0
  379. package/config/medium/TiredPacMan/input/17 - Complex 2.txt +22 -0
  380. package/config/medium/TiredPacMan/input/18 - Complex 3.txt +32 -0
  381. package/config/medium/TiredPacMan/output/01 - Basic Grid.txt +1 -0
  382. package/config/medium/TiredPacMan/output/02 - Basic Grid with Barriers.txt +1 -0
  383. package/config/medium/TiredPacMan/output/03 - Ghosts Gatekeeping.txt +1 -0
  384. package/config/medium/TiredPacMan/output/04 - Ghosts Extreme Gatekeeping.txt +1 -0
  385. package/config/medium/TiredPacMan/output/05 - No Fruit.txt +1 -0
  386. package/config/medium/TiredPacMan/output/06 - No Energy.txt +1 -0
  387. package/config/medium/TiredPacMan/output/07 - No Moves.txt +1 -0
  388. package/config/medium/TiredPacMan/output/08 - Don/342/200/231t Be Greedy.txt" +1 -0
  389. package/config/medium/TiredPacMan/output/09 - Basic Wrap.txt +1 -0
  390. package/config/medium/TiredPacMan/output/10 - Empty Grid.txt +1 -0
  391. package/config/medium/TiredPacMan/output/11 - Medium Grid.txt +1 -0
  392. package/config/medium/TiredPacMan/output/12 - Large Grid.txt +1 -0
  393. package/config/medium/TiredPacMan/output/13 - All Fruit Eaten.txt +1 -0
  394. package/config/medium/TiredPacMan/output/14 - Dead Ends.txt +1 -0
  395. package/config/medium/TiredPacMan/output/15 - Ultimate Wrap.txt +1 -0
  396. package/config/medium/TiredPacMan/output/16 - Complex 1.txt +1 -0
  397. package/config/medium/TiredPacMan/output/17 - Complex 2.txt +1 -0
  398. package/config/medium/TiredPacMan/output/18 - Complex 3.txt +1 -0
  399. package/config/medium/WesnothFightDeathProbabilities/code/CGCode.cpp +27 -0
  400. package/config/medium/WesnothFightDeathProbabilities/code/CGCode.java +25 -0
  401. package/config/medium/WesnothFightDeathProbabilities/code/CGCode.js +17 -0
  402. package/config/medium/WesnothFightDeathProbabilities/code/CGCode.php +8 -0
  403. package/config/medium/WesnothFightDeathProbabilities/code/CGCode.ts +17 -0
  404. package/config/medium/WesnothFightDeathProbabilities/config.json +48 -0
  405. package/config/medium/WesnothFightDeathProbabilities/input/01 - Rifleman vs Shaman.txt +2 -0
  406. package/config/medium/WesnothFightDeathProbabilities/input/02 - Shaman vs Rifleman.txt +2 -0
  407. package/config/medium/WesnothFightDeathProbabilities/input/03 - Rifleman vs Rifleman.txt +2 -0
  408. package/config/medium/WesnothFightDeathProbabilities/input/04 - Archer vs Swordsman.txt +2 -0
  409. package/config/medium/WesnothFightDeathProbabilities/input/05 - Light infantry vs Heavy infantry.txt +2 -0
  410. package/config/medium/WesnothFightDeathProbabilities/input/06 - Light infantry vs wounded Heavy infantry.txt +2 -0
  411. package/config/medium/WesnothFightDeathProbabilities/input/07 - Wounded Heavy infantry vs Light infantry.txt +2 -0
  412. package/config/medium/WesnothFightDeathProbabilities/input/08 - A harmless fight.txt +2 -0
  413. package/config/medium/WesnothFightDeathProbabilities/output/01 - Rifleman vs Shaman.txt +1 -0
  414. package/config/medium/WesnothFightDeathProbabilities/output/02 - Shaman vs Rifleman.txt +1 -0
  415. package/config/medium/WesnothFightDeathProbabilities/output/03 - Rifleman vs Rifleman.txt +1 -0
  416. package/config/medium/WesnothFightDeathProbabilities/output/04 - Archer vs Swordsman.txt +1 -0
  417. package/config/medium/WesnothFightDeathProbabilities/output/05 - Light infantry vs Heavy infantry.txt +1 -0
  418. package/config/medium/WesnothFightDeathProbabilities/output/06 - Light infantry vs wounded Heavy infantry.txt +1 -0
  419. package/config/medium/WesnothFightDeathProbabilities/output/07 - Wounded Heavy infantry vs Light infantry.txt +1 -0
  420. package/config/medium/WesnothFightDeathProbabilities/output/08 - A harmless fight.txt +1 -0
  421. package/package.json +1 -1
@@ -0,0 +1,58 @@
1
+ 57 56
2
+ +-|+-|-||+|+|++++-++--+-||-+++|-+-++++||+++++++|+-+|-+-+
3
+ +++-++|++++|+|--++++|++||+-++-++-+-|++|++|+-++++--+++-+|
4
+ +++-+--+-+-++||++++++|++-|+-|+++|---++|-+|++++++||++|+++
5
+ ++|-++-++-+-+|++||+-|+++-|+++-++++++-+-+|-+|+-|++--+++++
6
+ -+++-++++|+|++++++|+++++-+++++|++|+++++-||--++++++-+++++
7
+ |+++++-|++-+|+++++-+-+++--++++-||++--++-+|++-++|-++||++-
8
+ +++++||++++++-+||++|+++-+|++++++-+--++--++|-|+++||++||+|
9
+ +|+-++++|+-+++|||+++++++|+|+|-|+||+++|++-+++|+|||+-+-+++
10
+ +-+++++++-+|+++-|+-++++-|++||+|++||+|-||-++-+-+|+-+-|+++
11
+ |-+++++|-+++-+--++|||+++++|++|||-+-++-+++--+--+++++|+-+|
12
+ ||-+|++-|++|-|-++++-|+-+--+||---+-+-|++|||+-+-|++|-++|++
13
+ -+++-+++++|++|+-|+||+|+++++|+++-|+++++-+++|+++-|-++|++-+
14
+ |||+++++++|||++-|-|+|-+|+++-+-+|||-||+++++++-+++-+|-+++|
15
+ -+++-+|+||++++-|++-+++-|-+|+++-+|+|+-+--|+-+|-|++++++|-+
16
+ ||--++++++|||-+|-+-++|||+++-++++-||++-++|+++++++-+||+++|
17
+ ++-|++++++++||++++++|-++++-++-++|++-|||-++|+--+++|+|++|+
18
+ -+++-+++++|+++++++++++-+-|--+|+-|-++++|+|+|-++--+|++++++
19
+ |-+++||+++++++||+---|-|++-+|-|||-++-+++++-++++-+-+||--++
20
+ +-+|-|+--+|-||++|++|++++++++|+|++|+++|+-+|-+-|+|-++|+-||
21
+ |++-|+|++-++|-+++-++-++++++++++++++++-+-+|+||++-++-|+++-
22
+ ++|++++|--+++-++++++++++---+++|+++|++|+|++++||++|++|-+++
23
+ ||++|+-++|+++|+|-+-+-++++-+|||+-++-++++++|++-++++++|+++-
24
+ +++|+||+|++-++--++++++++|+++++|+++|-|---++-|+++|-+++++||
25
+ -++|++++-++-+++-++++-+-|--+++|++||+++|++|+++++|+++|-+++-
26
+ -+|+|+|+-++|||-++||++|+++++|+|-+++-++||+++-+|++|+|-+++|+
27
+ |+||++|+||--|+||++-++-++|++++|+|||-+++++--+++---||--++++
28
+ --+--++++++|+||++||+++++++|+|+-+++++++++-++++|-+-+++++++
29
+ -+-+-+-+++++|+-+++-|-|++|+|+-+||+|+||+---+++++--+--++-+|
30
+ --++||+|++++||+++++|-+++|+++-++-+-+++++++++++++++--|+|+|
31
+ +-+|++-+--|+++++||-+|+-++++-|++++|++++|+-|++++++++++++++
32
+ +|++-+++-+-+|-+-++|++-++++||++-+-+++|||+++|+-++-+-|+|+||
33
+ ++-+|++++++++++--+-|++-+++|++-++++|+|-|-++++-++|+++-++-|
34
+ +++-++++|+++|+++++-+|++-|-++-|+++++++++-+-+++-+|+++|++++
35
+ -++|++++++-|-+|-+|++-+||||++++|+|++++++|-+|++++|+++|++-+
36
+ -+++++|++-+|++++|++-+++++-+-++++++-++++-||++++-++-+|+|+|
37
+ +++-|-+++||+-++++||+-+-||++++++|++|||+-+++-+||++|++|---+
38
+ +++-|+||-++|+-+-+++-|++|+++|+-+++++-+-||||++--++-+-|++++
39
+ ++--+++++++|||+|++++|+++++--|+-++++|+++-|+--|++-|-++|-||
40
+ ++-|-++||-+-+--|+-++|++++++|+++++|||-+-|+|+++++|+|||+|-+
41
+ ++-+-+|-+-+-+||-+-++||++++++-+-+--||||++++++|+++++-++|+-
42
+ ||++++++|||++|+|++++|+-++++-++|-|++|++++|++-|++++||+++|+
43
+ |++++|+|+-+-++++--+-++|+|-++|+++++||+-+++-++-+++++-++-+-
44
+ ++||+-++++|||++-|++++-|++++-+++|+-+-||+++++-+|+++++++++|
45
+ ++|-++||-+-+|++-+-++|+++----++++--|+++|-+|+-+|+++|+-+++|
46
+ |||-+++++-+++|+|+|++--+-|----++++|--+|+-+--++++-+++-+|+-
47
+ +|-++||++|-||++-+--||++||-++|++++|-+-++++-++|+|-+-+++++-
48
+ |+--++|+++++-|+++--|-+-+++++|+++|+++|+|+-|++|+--+++--++-
49
+ +++-++|+-++++-++++-+-+--+++-++++|+-+++-++-++++++||++-++|
50
+ +|++||++|-++||+|++++++-|+|+++|+|-++|+--+|++-||||-+-+|+++
51
+ ++|||+++||++||++++-|++----|++-|||+++++|-|-++-+|++++|++++
52
+ +-+-++++++++-+-++|++-|+++++-++-++|+|-|++++|-+||++||+-+--
53
+ +++++++++++-|++|++++|++|+++--|---++|+-+-++|+||-+++-+-+-+
54
+ |++++||+++-++-+++||-|-|+++++|++++-+++|++++---+++++++-+++
55
+ ||||+-+--++-++++++|+|-+--+++++|++|+--|-|++|++++|+-++-+++
56
+ |++++||-+|+++-+++-|+-|++-+++++--+-++-+++++|++++++++++++|
57
+ +++--||+|-||++-+++||++-+|++-+++++++++++-++-+|----+-+|+++
58
+ -+-+|++++++-|+++---++-++++--|++++|+++-+||+-++++++|+++--+
@@ -0,0 +1,41 @@
1
+ 40 49
2
+ +++++++++++++++++++++++++++++++++++++++++++++++++
3
+ +++++++++++++++++++++++++++++++++++++++++++++++++
4
+ +++++++++++++++++++++++++++++++++++++++++++++++++
5
+ +++++++++++++++++++++++++++++++++++++++++++++++++
6
+ +++++++++++++++++++++++++++++++++++++++++++++++++
7
+ +++++++++++++++++++++++++++++++++++++++++++++++++
8
+ +++++++++++++++++++++++++++++++++++++++++++++++++
9
+ +++++++++++++++++++++++++++++++++++++++++++++++++
10
+ +++++++++++++++++++++++++++++++++++++++++++++++++
11
+ +++++++++++++++++++++++++++++++++++++++++++++++++
12
+ +++++++++++++++++++++++++++++++++++++++++++++++++
13
+ +++++++++++++++++++++++++++++++++++++++++++++++++
14
+ +++++++++++++++++++++++++++++++++++++++++++++++++
15
+ +++++++++++++++++++++++++++++++++++++++++++++++++
16
+ +++++++++++++++++++++++++++++++++++++++++++++++++
17
+ +++++++++++++++++++++++++++++++++++++++++++++++++
18
+ +++++++++++++++++++++++++++++++++++++++++++++++++
19
+ +++++++++++++++++++++++++++++++++++++++++++++++++
20
+ +++++++++++++++++++++++++++++++++++++++++++++++++
21
+ +++++++++++++++++++++++++++++++++++++++++++++++++
22
+ +++++++++++++++++++++++++++++++++++++++++++++++++
23
+ +++++++++++++++++++++++++++++++++++++++++++++++++
24
+ +++++++++++++++++++++++++++++++++++++++++++++++++
25
+ +++++++++++++++++++++++++++++++++++++++++++++++++
26
+ +++++++++++++++++++++++++++++++++++++++++++++++++
27
+ +++++++++++++++++++++++++++++++++++++++++++++++++
28
+ +++++++++++++++++++++++++++++++++++++++++++++++++
29
+ +++++++++++++++++++++++++++++++++++++++++++++++++
30
+ +++++++++++++++++++++++++++++++++++++++++++++++++
31
+ +++++++++++++++++++++++++++++++++++++++++++++++++
32
+ +++++++++++++++++++++++++++++++++++++++++++++++++
33
+ +++++++++++++++++++++++++++++++++++++++++++++++++
34
+ +++++++++++++++++++++++++++++++++++++++++++++++++
35
+ +++++++++++++++++++++++++++++++++++++++++++++++++
36
+ +++++++++++++++++++++++++++++++++++++++++++++++++
37
+ +++++++++++++++++++++++++++++++++++++++++++++++++
38
+ +++++++++++++++++++++++++++++++++++++++++++++++++
39
+ +++++++++++++++++++++++++++++++++++++++++++++++++
40
+ +++++++++++++++++++++++++++++++++++++++++++++++++
41
+ +++++++++++++++++++++++++++++++++++++++++++++++++
@@ -0,0 +1,85 @@
1
+ 84 78
2
+ +++++++++++++++++++++++++ +++ +++++++++++++++++++++ + +++++++++++ +++++++++++
3
+ ++++++ ++ +++++++++ + +++++++++++++ + +++++++++++++++ ++++++++++ +++++++ +++++
4
+ ++++++++++++++++++++++ ++++++ ++++++++++++++++++++++++++++++ +++ ++++++++++++
5
+ +++++++++++++ + ++ +++++++++++++++++++++++++ + +++++ ++++++++++++++ ++ ++++++
6
+ +++++++++ +++++++++++++ ++ +++ ++++++++++++++++ ++ ++++ +++++++++++ +++++++ ++
7
+ + +++++ ++++++++++ ++++++ +++++++++++++++++++++ ++++++++++ ++++++++ ++++++ +++
8
+ +++++++++++ + ++++++ ++++++++ +++ +++++++++++++++++++ +++++ +++ ++++ +++++++++
9
+ +++ +++++++++++++++++++++++++ +++++++++++++++++++++ +++++++ ++++++ +++ +++++++
10
+ +++++++ ++++ +++++++++++++++++++ ++++++++++++ ++++++++++++++ +++++++++++++++
11
+ +++ +++ + ++++++++++ ++++++++++++++++++++++++++ ++++++++++++ + + ++++ ++ ++++
12
+ +++++++++++++++++++++ +++++++++ + ++ ++++ +++++ ++++++ ++++++++++ +++++++++++
13
+ +++++++++ +++++++++ +++++ + ++++++ ++++++++++++++++++++++++++++ ++++++++++++++
14
+ +++++ +++ ++++++++++ +++++++++ +++++ ++++++++++++++ ++++++++++++++++++++++++++
15
+ +++++++++++++ +++++ +++++++++++ ++++++++ ++++++++++++++ +++ + + +++++++++++++
16
+ +++++ +++++++++ ++++++++++++++++++ ++ ++++++++++++++++ ++++++++++ ++++++++ ++
17
+ ++++++++ +++ + +++++++ +++++++++ +++++++++++ ++ ++++ +++++++ +++++++++++ +++++
18
+ ++++++++ +++++++++ ++++++++++ +++++++++++++++++++++++++++++++++ ++++++++++++++
19
+ ++++++++++++++ ++++ + + ++++++++++++++++++++++++++++++++++++++++++ ++++++++
20
+ ++++ +++++++ +++++++++ +++++ + ++++ +++++++++ +++++ +++++++++++++++++++++++++
21
+ +++++++++++++++ + +++++ +++ ++ +++++++++++++++++++ ++ +++++++++++ +++++++++ +
22
+ + ++++ ++ ++ ++ ++++++ +++++++++++++++ + + +++++++++++++ +++++++++++++++++++++
23
+ ++ +++ ++++++++++++++ +++++++++++++++++++++++++++++ +++++++++++++++++++++++
24
+ +++ ++++++++++++ +++++++++++++++++ +++++++++++++++++++++ ++ ++++++++++++ +++
25
+ ++++ +++++ +++++++++++ ++++++++++++ +++++++ + +++++++++ +++++++++ +++++++++++
26
+ +++++++++++++++ +++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++
27
+ +++ +++ ++++++++++ +++++++++++++++++++++++++++++++++++++++++++++ + ++++++++
28
+ ++++++++++ +++++ +++++++++++ +++++++++++ +++++++++++ +++++++++ ++++ +++++++ +
29
+ +++ +++ +++++ ++++++ + +++ ++++ ++++++++++++++++ +++ ++++++++++ +++++++++++ ++
30
+ ++++ +++++++++++++++++ +++ + +++++++++++++++++++++++++++++++++++ ++++++++++ +
31
+ ++ + + +++ +++++++++++++++ +++ +++++++++++++++++++ +++++ +++++ +++++++++++++++
32
+ ++++ +++++++++ +++ +++ ++++ ++++++ ++++++++++++++++++++++++++++++++++++++++ ++
33
+ ++++++++++++ ++++++++++++ ++++++ ++++++++++++ ++++++++++++++++++++ + +++++++++
34
+ +++++++++++++ +++++++++ ++++++++ ++++++++++ +++++++++++++++++++++++++ +++++++
35
+ ++++++++++++++ + ++++++++++++++++++++++++++++++ +++++++++++++ ++++++++ ++ ++++
36
+ +++++++++ +++++ +++ ++++++++++++++++++++++++++++++ ++++++ ++++++++++++++ +++
37
+ ++++++++++++++++ ++++ ++++++++++++++++ +++++++++ ++++++++++++++++ ++++ +++++
38
+ +++++++++++ +++++++++++++++++++ +++ ++++++++++ +++++++++++++++++++++++++++++ +
39
+ ++++++++++++++++++++ ++ +++++++++ + +++++++++++++++++++++++++++++++++++++++++
40
+ +++ ++ ++++++++++++++++++++++++++ +++++ ++++ +++++++++ ++++++++++ + +++ ++ ++
41
+ + ++++++++ +++++ ++++ ++++++++++++++++++++++++++++++++++++++++++++ ++++++++++
42
+ +++++++++++ +++ +++++ + + ++++++++++++++ +++++++ ++++++++++++++++ +++++ +++++
43
+ ++ + +++++ +++++++ +++++++++++++ ++++++++++ +++++ ++++++++++++++++ +++ ++++
44
+ +++++++++++++++++++++++++++++++++++++++++++ ++ ++ ++ + + +++++++++++++ +++ +++
45
+ ++++++++++++ ++++++++++++++++++++++++ ++ ++ ++++++++ +++++ ++ ++++++++++++
46
+ +++++++ ++++++++ ++++++++ ++++++ ++ ++++++++++ ++ ++++++ +++ ++++++++++++++++
47
+ ++++++++++++++++++++++ +++++++++++++ ++++++++++ +++++++++++++++++++++++++++++
48
+ + ++ +++++ ++++++ ++++++++++ ++ ++++++++++++ ++ ++++++++++++ ++++++++ ++++++++
49
+ ++++++ +++++++ ++++++ +++++++++++++++++ ++ ++++++++++++++++ ++++ +++++++++++++
50
+ ++++++++++++++++++++++ ++++++++++++++ +++ +++ ++++++++++++++++++++++ + +++ +++
51
+ + +++++ ++++++++++ +++++++++++++++++++++++++++++ +++++++++ ++++ ++++ ++++++++
52
+ +++++++++ +++++++++++++++++++++++ ++++++++++++++++ ++++ +++++++++++++++++++++
53
+ ++++++++ +++ + ++++++++++ +++++++++++++++++ + +++ +++ ++++++++++++ ++++++++++
54
+ ++++++++++++++++++ +++++++++++++ +++ +++ ++++++++++++++++++++ ++++ ++++++++ ++
55
+ +++++++++++++++++++ ++ ++++++++ +++++++++++ ++++++ ++++ ++++++++++ ++++ + ++ +
56
+ ++ ++++++++++++++++ + ++++++++++++++++++++++++++++++++++++++++ ++++++++++++
57
+ +++++++++ ++++++++ ++++ +++++++ ++++++++ ++++++ ++++ ++++++++++ ++ ++++++++++
58
+ ++++++++++++++++++++++++++ +++++++++++++++++ ++++++++++ ++++++ ++++++++ ++ +
59
+ ++++ ++ + +++++++++++++++++++++ ++++++ ++++++++++++++++++++++++ +++++++ +++
60
+ ++++++++++++ ++++++++ ++++++++++++++++++ ++++++ +++++++++ ++++++++ ++++++++ +
61
+ ++++++++ ++++++++++ ++++++++ +++++++++++++++++ +++++++ +++++ ++++++++ +++++ +
62
+ ++++++++++++++++++ +++++++++++ + +++++++++++++++++ ++++++++++++ ++++++++++++++
63
+ ++++++ +++++++++++ ++++++++++++++++++++ ++++ + ++++ ++++++++++++++++++++++++++
64
+ +++++++++++++++++ ++++++++++ +++++++++++++++++++++++++++++ +++++++++ + +++++++
65
+ ++++ +++++++++++ ++++++++++++++++++++++ +++++++++++++++++++++++++++++++++ ++
66
+ +++++++++++++++ +++++++ ++ +++ ++++++ ++++++++ ++++++++++ +++++ + ++ +++++++++
67
+ ++++++++++++ +++ +++++++++++++ ++ ++++++++++++++ ++ +++ + +++++ ++ +++++++++
68
+ ++++++++ ++++++++++++ +++++++++++++++++++ ++++++++++++++++++++++++++++ +++++++
69
+ ++ ++++++ ++++++ +++++++ ++++++++++ +++++ +++ ++++++++++++ ++++++ +++++++++ +
70
+ +++++++ ++ ++++++ ++++ ++++++++++++ +++++++++ ++ ++++ ++++ +++++++++++ ++++++
71
+ +++++ ++++++++++++++++++++ ++++++++ ++++++++++++++++++ ++++++++++++++++ +++++
72
+ + +++++++++++++ + +++++++ +++++++++++++++++++++ +++++++++++++++++++++++++ +
73
+ ++++++++++++++++++++++++++++ +++++++++++ +++++ ++++ ++++++++ ++++++++++++++++
74
+ + ++++++++ +++++++++++++++++++++++++ +++++++++++++++++++++++++++++ ++ +++ ++++
75
+ +++ ++ ++++ + ++++++++++++++++++++++++ +++++++++++++ ++++++++++++++++++++++++
76
+ +++++ ++++++ ++++++++++++++++ +++++ + +++++++++++ ++ +++++++++++++++++++++ +++
77
+ +++ +++++++ ++++++++++++++ +++++ +++++++++++ ++++++++++++++++ +++++ ++++ ++++
78
+ +++++++ +++++++ ++++++++ + ++++++++++++++ ++++++++++++++ ++++ + +++++++++++++
79
+ ++++++++++++++++ ++++++++++++++ ++++++++++++++++++++++++++++++++++++++ +++++++
80
+ +++++++++++ ++++++++++++++++++ ++++++++++ ++++++++++++ +++++++++++++++++++ ++
81
+ +++++++++++++++++ ++++ ++++ +++++ ++++++++++++++++++++ ++++ +++++++ ++++++++++
82
+ ++++++++++++++++ ++ ++ +++ ++++++++++++++++++++++++++++++++++++++++++ ++++++++
83
+ +++++++++ +++ +++++++++++++++++ ++++++++ +++++++++++++ + +++++ ++++++++++ ++
84
+ +++++++++++++ ++++++++++++ +++++++++++++++++++++ ++++++++ + + ++++ +++++++++++
85
+ ++++++ +++ ++ ++++++ +++++++++++++++++++ +++++++++ +++++++++++++++++++ +++++++
@@ -0,0 +1,99 @@
1
+ 98 97
2
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
6
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
7
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
8
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
11
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
12
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
13
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
14
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
16
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
18
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
19
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
20
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
21
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
22
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
23
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
25
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
26
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
27
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
28
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
29
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
30
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
32
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
34
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
35
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
36
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
37
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
38
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
39
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
40
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
41
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
42
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
43
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
44
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
45
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
46
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
47
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
48
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
49
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
50
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
51
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
52
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
53
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
54
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
55
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
56
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
57
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
58
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
59
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
60
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
61
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
62
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
63
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
64
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
65
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
66
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
67
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
68
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
69
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
70
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
71
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
72
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
73
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
74
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
75
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
76
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
77
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
78
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
79
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
80
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
81
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
82
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
83
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
84
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
85
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
86
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
87
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
88
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
89
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
90
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
91
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
92
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
93
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
94
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
95
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
96
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
97
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
98
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
99
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
@@ -0,0 +1,18 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ string offset_1;
11
+ string offset_2;
12
+ cin >> offset_1 >> offset_2; cin.ignore();
13
+
14
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
15
+ // To debug: cerr << "Debug messages..." << endl;
16
+
17
+ cout << "answer" << endl;
18
+ }
@@ -0,0 +1,17 @@
1
+ import java.util.*;
2
+ import java.io.*;
3
+ import java.math.*;
4
+
5
+ class Solution {
6
+
7
+ public static void main(String args[]) {
8
+ Scanner in = new Scanner(System.in);
9
+ String offset1 = in.next();
10
+ String offset2 = in.next();
11
+
12
+ // Write an answer using System.out.println()
13
+ // To debug: System.err.println("Debug messages...");
14
+
15
+ System.out.println("answer");
16
+ }
17
+ }
@@ -0,0 +1,8 @@
1
+ var inputs = readline().split(' ');
2
+ const offset1 = inputs[0];
3
+ const offset2 = inputs[1];
4
+
5
+ // Write an answer using console.log()
6
+ // To debug: console.error('Debug messages...');
7
+
8
+ console.log('answer');
@@ -0,0 +1,7 @@
1
+ <?php
2
+ fscanf(STDIN, "%s %s", $offset1, $offset2);
3
+
4
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
5
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
6
+
7
+ echo("answer\n");
@@ -0,0 +1,8 @@
1
+ var inputs: string[] = readline().split(' ');
2
+ const offset1: string = inputs[0];
3
+ const offset2: string = inputs[1];
4
+
5
+ // Write an answer using console.log()
6
+ // To debug: console.error('Debug messages...');
7
+
8
+ console.log('answer');
@@ -0,0 +1,33 @@
1
+ {
2
+ "path": "easy/SynchronizedScrambles",
3
+ "name": "Synchronized Scrambles",
4
+ "alphanumName": "SynchronizedScrambles",
5
+ "link": "https://www.codingame.com/ide/puzzle/synchronized-scrambles",
6
+ "tests": [
7
+ {
8
+ "name": "Just a minute",
9
+ "alphanumName": "JustAMinute",
10
+ "file": "01 - Just a minute.txt"
11
+ },
12
+ {
13
+ "name": "Two instants per day",
14
+ "alphanumName": "TwoInstantsPerDay",
15
+ "file": "02 - Two instants per day.txt"
16
+ },
17
+ {
18
+ "name": "10-minute window",
19
+ "alphanumName": "TenMinuteWindow",
20
+ "file": "03 - 10-minute window.txt"
21
+ },
22
+ {
23
+ "name": "Many random points",
24
+ "alphanumName": "ManyRandomPoints",
25
+ "file": "04 - Many random points.txt"
26
+ },
27
+ {
28
+ "name": "Almost an hour",
29
+ "alphanumName": "AlmostAnHour",
30
+ "file": "05 - Almost an hour.txt"
31
+ }
32
+ ]
33
+ }
@@ -0,0 +1,10 @@
1
+ 2300, 0230
2
+ 2301, 0231
3
+ 2302, 0232
4
+ 2303, 0233
5
+ 2304, 0234
6
+ 2305, 0235
7
+ 2306, 0236
8
+ 2307, 0237
9
+ 2308, 0238
10
+ 2309, 0239
@@ -0,0 +1,16 @@
1
+ 0023, 0302
2
+ 0031, 0310
3
+ 0134, 0413
4
+ 0142, 0421
5
+ 0245, 0524
6
+ 0253, 0532
7
+ 0356, 0635
8
+ 1023, 1302
9
+ 1031, 1310
10
+ 1134, 1413
11
+ 1142, 1421
12
+ 1245, 1524
13
+ 1253, 1532
14
+ 1356, 1635
15
+ 2023, 2302
16
+ 2031, 2310
@@ -0,0 +1,59 @@
1
+ 0006, 0600
2
+ 0016, 0610
3
+ 0026, 0620
4
+ 0036, 0630
5
+ 0046, 0640
6
+ 0056, 0650
7
+ 0107, 0701
8
+ 0117, 0711
9
+ 0127, 0721
10
+ 0137, 0731
11
+ 0147, 0741
12
+ 0157, 0751
13
+ 0208, 0802
14
+ 0218, 0812
15
+ 0228, 0822
16
+ 0238, 0832
17
+ 0248, 0842
18
+ 0258, 0852
19
+ 0309, 0903
20
+ 0319, 0913
21
+ 0329, 0923
22
+ 0339, 0933
23
+ 0349, 0943
24
+ 0359, 0953
25
+ 0410, 1004
26
+ 0451, 1045
27
+ 0511, 1105
28
+ 0612, 1206
29
+ 0713, 1307
30
+ 0814, 1408
31
+ 0915, 1509
32
+ 1006, 1600
33
+ 1016, 1610
34
+ 1026, 1620
35
+ 1036, 1630
36
+ 1046, 1640
37
+ 1056, 1650
38
+ 1107, 1701
39
+ 1117, 1711
40
+ 1127, 1721
41
+ 1137, 1731
42
+ 1147, 1741
43
+ 1157, 1751
44
+ 1208, 1802
45
+ 1218, 1812
46
+ 1228, 1822
47
+ 1238, 1832
48
+ 1248, 1842
49
+ 1258, 1852
50
+ 1309, 1903
51
+ 1319, 1913
52
+ 1329, 1923
53
+ 1339, 1933
54
+ 1349, 1943
55
+ 1359, 1953
56
+ 1420, 2014
57
+ 1521, 2115
58
+ 1622, 2216
59
+ 1723, 2317
@@ -0,0 +1,19 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int height;
11
+ int width;
12
+ int n;
13
+ cin >> height >> width >> n; cin.ignore();
14
+
15
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
16
+ // To debug: cerr << "Debug messages..." << endl;
17
+
18
+ cout << "answer" << endl;
19
+ }
@@ -0,0 +1,18 @@
1
+ import java.util.*;
2
+ import java.io.*;
3
+ import java.math.*;
4
+
5
+ class Solution {
6
+
7
+ public static void main(String args[]) {
8
+ Scanner in = new Scanner(System.in);
9
+ int height = in.nextInt();
10
+ int width = in.nextInt();
11
+ int n = in.nextInt();
12
+
13
+ // Write an answer using System.out.println()
14
+ // To debug: System.err.println("Debug messages...");
15
+
16
+ System.out.println("answer");
17
+ }
18
+ }
@@ -0,0 +1,9 @@
1
+ var inputs = readline().split(' ');
2
+ const height = parseInt(inputs[0]);
3
+ const width = parseInt(inputs[1]);
4
+ const n = parseInt(inputs[2]);
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('answer');
@@ -0,0 +1,7 @@
1
+ <?php
2
+ fscanf(STDIN, "%d %d %d", $height, $width, $n);
3
+
4
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
5
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
6
+
7
+ echo("answer\n");
@@ -0,0 +1,9 @@
1
+ var inputs: string[] = readline().split(' ');
2
+ const height: number = parseInt(inputs[0]);
3
+ const width: number = parseInt(inputs[1]);
4
+ const n: number = parseInt(inputs[2]);
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('answer');