@cyrilverloop/codingame-configuration 1.23.0 → 1.25.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 (306) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/config/easy/LaughterIsContagious/code/CGCode.cpp +17 -0
  3. package/config/easy/LaughterIsContagious/code/CGCode.java +16 -0
  4. package/config/easy/LaughterIsContagious/code/CGCode.js +6 -0
  5. package/config/easy/LaughterIsContagious/code/CGCode.php +7 -0
  6. package/config/easy/LaughterIsContagious/code/CGCode.ts +6 -0
  7. package/config/easy/LaughterIsContagious/config.json +68 -0
  8. package/config/easy/LaughterIsContagious/input/01 - Everybody laughing.txt +1 -0
  9. package/config/easy/LaughterIsContagious/input/02 - Too far.txt +1 -0
  10. package/config/easy/LaughterIsContagious/input/03 - Example.txt +1 -0
  11. package/config/easy/LaughterIsContagious/input/04 - Very funny.txt +1 -0
  12. package/config/easy/LaughterIsContagious/input/05 - Not funny.txt +1 -0
  13. package/config/easy/LaughterIsContagious/input/06 - Lonely.txt +1 -0
  14. package/config/easy/LaughterIsContagious/input/07 - Solidarity.txt +1 -0
  15. package/config/easy/LaughterIsContagious/input/08 - Big show.txt +1 -0
  16. package/config/easy/LaughterIsContagious/input/09 - Very big show.txt +1 -0
  17. package/config/easy/LaughterIsContagious/input/10 - One Man Show.txt +1 -0
  18. package/config/easy/LaughterIsContagious/input/11 - Duo.txt +1 -0
  19. package/config/easy/LaughterIsContagious/input/12 - Trio.txt +1 -0
  20. package/config/easy/LaughterIsContagious/output/01 - Everybody laughing.txt +1 -0
  21. package/config/easy/LaughterIsContagious/output/02 - Too far.txt +1 -0
  22. package/config/easy/LaughterIsContagious/output/03 - Example.txt +1 -0
  23. package/config/easy/LaughterIsContagious/output/04 - Very funny.txt +1 -0
  24. package/config/easy/LaughterIsContagious/output/05 - Not funny.txt +1 -0
  25. package/config/easy/LaughterIsContagious/output/06 - Lonely.txt +1 -0
  26. package/config/easy/LaughterIsContagious/output/07 - Solidarity.txt +1 -0
  27. package/config/easy/LaughterIsContagious/output/08 - Big show.txt +1 -0
  28. package/config/easy/LaughterIsContagious/output/09 - Very big show.txt +1 -0
  29. package/config/easy/LaughterIsContagious/output/10 - One Man Show.txt +1 -0
  30. package/config/easy/LaughterIsContagious/output/11 - Duo.txt +1 -0
  31. package/config/easy/LaughterIsContagious/output/12 - Trio.txt +1 -0
  32. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.cpp +19 -0
  33. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.java +18 -0
  34. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.js +8 -0
  35. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.php +9 -0
  36. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.ts +8 -0
  37. package/config/easy/MiniCPUInstructionDecoder/config.json +63 -0
  38. package/config/easy/MiniCPUInstructionDecoder/input/01 - Boot Sequence.txt +1 -0
  39. package/config/easy/MiniCPUInstructionDecoder/input/02 - Multiply Core.txt +1 -0
  40. package/config/easy/MiniCPUInstructionDecoder/input/03 - INC and DEC.txt +1 -0
  41. package/config/easy/MiniCPUInstructionDecoder/input/04 - INC Overflow.txt +1 -0
  42. package/config/easy/MiniCPUInstructionDecoder/input/05 - DEC Underflow.txt +1 -0
  43. package/config/easy/MiniCPUInstructionDecoder/input/06 - ADD Overflow.txt +1 -0
  44. package/config/easy/MiniCPUInstructionDecoder/input/07 - SUB Underflow.txt +1 -0
  45. package/config/easy/MiniCPUInstructionDecoder/input/08 - MUL Overflow.txt +1 -0
  46. package/config/easy/MiniCPUInstructionDecoder/input/09 - Mixed Operations.txt +1 -0
  47. package/config/easy/MiniCPUInstructionDecoder/input/10 - Immediate Halt.txt +1 -0
  48. package/config/easy/MiniCPUInstructionDecoder/input/11 - MOV Overwrite.txt +1 -0
  49. package/config/easy/MiniCPUInstructionDecoder/output/01 - Boot Sequence.txt +4 -0
  50. package/config/easy/MiniCPUInstructionDecoder/output/02 - Multiply Core.txt +4 -0
  51. package/config/easy/MiniCPUInstructionDecoder/output/03 - INC and DEC.txt +4 -0
  52. package/config/easy/MiniCPUInstructionDecoder/output/04 - INC Overflow.txt +4 -0
  53. package/config/easy/MiniCPUInstructionDecoder/output/05 - DEC Underflow.txt +4 -0
  54. package/config/easy/MiniCPUInstructionDecoder/output/06 - ADD Overflow.txt +4 -0
  55. package/config/easy/MiniCPUInstructionDecoder/output/07 - SUB Underflow.txt +4 -0
  56. package/config/easy/MiniCPUInstructionDecoder/output/08 - MUL Overflow.txt +4 -0
  57. package/config/easy/MiniCPUInstructionDecoder/output/09 - Mixed Operations.txt +4 -0
  58. package/config/easy/MiniCPUInstructionDecoder/output/10 - Immediate Halt.txt +4 -0
  59. package/config/easy/MiniCPUInstructionDecoder/output/11 - MOV Overwrite.txt +4 -0
  60. package/config/easy/RequestValidator/code/CGCode.cpp +19 -0
  61. package/config/easy/RequestValidator/code/CGCode.java +17 -0
  62. package/config/easy/RequestValidator/code/CGCode.js +7 -0
  63. package/config/easy/RequestValidator/code/CGCode.php +8 -0
  64. package/config/easy/RequestValidator/code/CGCode.ts +7 -0
  65. package/config/easy/RequestValidator/config.json +83 -0
  66. package/config/easy/RequestValidator/input/01 - Order Up!.txt +2 -0
  67. package/config/easy/RequestValidator/input/02 - Corrupted.txt +2 -0
  68. package/config/easy/RequestValidator/input/03 - One Cup.txt +2 -0
  69. package/config/easy/RequestValidator/input/04 - Checksum Error.txt +2 -0
  70. package/config/easy/RequestValidator/input/05 - Department Fix.txt +2 -0
  71. package/config/easy/RequestValidator/input/06 - Mismatched Order.txt +2 -0
  72. package/config/easy/RequestValidator/input/07 - Misplaced Order.txt +2 -0
  73. package/config/easy/RequestValidator/input/08 - Order Zero.txt +2 -0
  74. package/config/easy/RequestValidator/input/09 - Standardised Order.txt +2 -0
  75. package/config/easy/RequestValidator/input/10 - Decaffeinated Coffee.txt +2 -0
  76. package/config/easy/RequestValidator/input/11 - Invalid Header.txt +2 -0
  77. package/config/easy/RequestValidator/input/12 - Infinite Stock.txt +2 -0
  78. package/config/easy/RequestValidator/input/13 - Padded Frame.txt +2 -0
  79. package/config/easy/RequestValidator/input/14 - 0xC0FFEE.txt +2 -0
  80. package/config/easy/RequestValidator/input/15 - Missing Checksum.txt +2 -0
  81. package/config/easy/RequestValidator/output/01 - Order Up!.txt +6 -0
  82. package/config/easy/RequestValidator/output/02 - Corrupted.txt +1 -0
  83. package/config/easy/RequestValidator/output/03 - One Cup.txt +1 -0
  84. package/config/easy/RequestValidator/output/04 - Checksum Error.txt +1 -0
  85. package/config/easy/RequestValidator/output/05 - Department Fix.txt +16 -0
  86. package/config/easy/RequestValidator/output/06 - Mismatched Order.txt +1 -0
  87. package/config/easy/RequestValidator/output/07 - Misplaced Order.txt +1 -0
  88. package/config/easy/RequestValidator/output/08 - Order Zero.txt +7 -0
  89. package/config/easy/RequestValidator/output/09 - Standardised Order.txt +1 -0
  90. package/config/easy/RequestValidator/output/10 - Decaffeinated Coffee.txt +1 -0
  91. package/config/easy/RequestValidator/output/11 - Invalid Header.txt +1 -0
  92. package/config/easy/RequestValidator/output/12 - Infinite Stock.txt +16 -0
  93. package/config/easy/RequestValidator/output/13 - Padded Frame.txt +1 -0
  94. package/config/easy/RequestValidator/output/14 - 0xC0FFEE.txt +4 -0
  95. package/config/easy/RequestValidator/output/15 - Missing Checksum.txt +1 -0
  96. package/config/easy/Snap/code/CGCode.cpp +28 -0
  97. package/config/easy/Snap/code/CGCode.java +24 -0
  98. package/config/easy/Snap/code/CGCode.js +14 -0
  99. package/config/easy/Snap/code/CGCode.php +17 -0
  100. package/config/easy/Snap/code/CGCode.ts +14 -0
  101. package/config/easy/Snap/config.json +93 -0
  102. package/config/easy/Snap/input/01 - Player 1 Win.txt +10 -0
  103. package/config/easy/Snap/input/02 - Player 2 Win.txt +12 -0
  104. package/config/easy/Snap/input/03 - Snapless.txt +22 -0
  105. package/config/easy/Snap/input/04 - Clutch Save.txt +30 -0
  106. package/config/easy/Snap/input/05 - Almost Clutch Save.txt +54 -0
  107. package/config/easy/Snap/input/06 - Quick Game.txt +4 -0
  108. package/config/easy/Snap/input/07 - Very Quick Game.txt +3 -0
  109. package/config/easy/Snap/input/08 - Lucky Shuffle.txt +22 -0
  110. package/config/easy/Snap/input/09 - Unfair Shuffle 1.txt +24 -0
  111. package/config/easy/Snap/input/10 - Unfair Shuffle 2.txt +25 -0
  112. package/config/easy/Snap/input/11 - Unfair Shuffle 3.txt +54 -0
  113. package/config/easy/Snap/input/12 - Standard Deck 1.txt +54 -0
  114. package/config/easy/Snap/input/13 - Standard Deck 2.txt +54 -0
  115. package/config/easy/Snap/input/14 - Standard Deck 3.txt +54 -0
  116. package/config/easy/Snap/input/15 - Standard Deck 4.txt +54 -0
  117. package/config/easy/Snap/input/16 - Standard Deck 5.txt +54 -0
  118. package/config/easy/Snap/input/17 - Standard Deck 6.txt +54 -0
  119. package/config/easy/Snap/output/01 - Player 1 Win.txt +2 -0
  120. package/config/easy/Snap/output/02 - Player 2 Win.txt +2 -0
  121. package/config/easy/Snap/output/03 - Snapless.txt +2 -0
  122. package/config/easy/Snap/output/04 - Clutch Save.txt +2 -0
  123. package/config/easy/Snap/output/05 - Almost Clutch Save.txt +2 -0
  124. package/config/easy/Snap/output/06 - Quick Game.txt +2 -0
  125. package/config/easy/Snap/output/07 - Very Quick Game.txt +2 -0
  126. package/config/easy/Snap/output/08 - Lucky Shuffle.txt +2 -0
  127. package/config/easy/Snap/output/09 - Unfair Shuffle 1.txt +2 -0
  128. package/config/easy/Snap/output/10 - Unfair Shuffle 2.txt +2 -0
  129. package/config/easy/Snap/output/11 - Unfair Shuffle 3.txt +2 -0
  130. package/config/easy/Snap/output/12 - Standard Deck 1.txt +2 -0
  131. package/config/easy/Snap/output/13 - Standard Deck 2.txt +2 -0
  132. package/config/easy/Snap/output/14 - Standard Deck 3.txt +2 -0
  133. package/config/easy/Snap/output/15 - Standard Deck 4.txt +2 -0
  134. package/config/easy/Snap/output/16 - Standard Deck 5.txt +2 -0
  135. package/config/easy/Snap/output/17 - Standard Deck 6.txt +2 -0
  136. package/config/easy/SolarShadowHunter/code/CGCode.cpp +24 -0
  137. package/config/easy/SolarShadowHunter/code/CGCode.java +24 -0
  138. package/config/easy/SolarShadowHunter/code/CGCode.js +12 -0
  139. package/config/easy/SolarShadowHunter/code/CGCode.php +12 -0
  140. package/config/easy/SolarShadowHunter/code/CGCode.ts +12 -0
  141. package/config/easy/SolarShadowHunter/config.json +43 -0
  142. package/config/easy/SolarShadowHunter/input/01 - test 1.txt +7 -0
  143. package/config/easy/SolarShadowHunter/input/02 - test 2.txt +6 -0
  144. package/config/easy/SolarShadowHunter/input/03 - test 3.txt +8 -0
  145. package/config/easy/SolarShadowHunter/input/04 - test 4.txt +6 -0
  146. package/config/easy/SolarShadowHunter/input/05 - test 5.txt +7 -0
  147. package/config/easy/SolarShadowHunter/input/06 - test 6.txt +22 -0
  148. package/config/easy/SolarShadowHunter/input/07 - test 7.txt +32 -0
  149. package/config/easy/SolarShadowHunter/output/01 - test 1.txt +1 -0
  150. package/config/easy/SolarShadowHunter/output/02 - test 2.txt +1 -0
  151. package/config/easy/SolarShadowHunter/output/03 - test 3.txt +1 -0
  152. package/config/easy/SolarShadowHunter/output/04 - test 4.txt +1 -0
  153. package/config/easy/SolarShadowHunter/output/05 - test 5.txt +1 -0
  154. package/config/easy/SolarShadowHunter/output/06 - test 6.txt +1 -0
  155. package/config/easy/SolarShadowHunter/output/07 - test 7.txt +1 -0
  156. package/config/easy/TheDescentPart2/code/CGCode.cpp +29 -0
  157. package/config/easy/TheDescentPart2/code/CGCode.java +25 -0
  158. package/config/easy/TheDescentPart2/code/CGCode.js +18 -0
  159. package/config/easy/TheDescentPart2/code/CGCode.php +17 -0
  160. package/config/easy/TheDescentPart2/code/CGCode.ts +18 -0
  161. package/config/easy/TheDescentPart2/config.json +58 -0
  162. package/config/easy/TheDescentPart2/input/01 - test 1.txt +7 -0
  163. package/config/easy/TheDescentPart2/input/02 - test 2.txt +10 -0
  164. package/config/easy/TheDescentPart2/input/03 - test 3.txt +14 -0
  165. package/config/easy/TheDescentPart2/input/04 - test 4.txt +9 -0
  166. package/config/easy/TheDescentPart2/input/05 - test 5.txt +15 -0
  167. package/config/easy/TheDescentPart2/input/06 - test 6.txt +10 -0
  168. package/config/easy/TheDescentPart2/input/07 - test 7.txt +13 -0
  169. package/config/easy/TheDescentPart2/input/08 - test 8.txt +10 -0
  170. package/config/easy/TheDescentPart2/input/09 - test 9.txt +18 -0
  171. package/config/easy/TheDescentPart2/input/10 - test 10.txt +18 -0
  172. package/config/easy/TheDescentPart2/output/01 - test 1.txt +1 -0
  173. package/config/easy/TheDescentPart2/output/02 - test 2.txt +1 -0
  174. package/config/easy/TheDescentPart2/output/03 - test 3.txt +1 -0
  175. package/config/easy/TheDescentPart2/output/04 - test 4.txt +1 -0
  176. package/config/easy/TheDescentPart2/output/05 - test 5.txt +1 -0
  177. package/config/easy/TheDescentPart2/output/06 - test 6.txt +1 -0
  178. package/config/easy/TheDescentPart2/output/07 - test 7.txt +1 -0
  179. package/config/easy/TheDescentPart2/output/08 - test 8.txt +1 -0
  180. package/config/easy/TheDescentPart2/output/09 - test 9.txt +1 -0
  181. package/config/easy/TheDescentPart2/output/10 - test 10.txt +1 -0
  182. package/config/easy/WhatADessert/code/CGCode.cpp +20 -0
  183. package/config/easy/WhatADessert/code/CGCode.java +19 -0
  184. package/config/easy/WhatADessert/code/CGCode.js +10 -0
  185. package/config/easy/WhatADessert/code/CGCode.php +7 -0
  186. package/config/easy/WhatADessert/code/CGCode.ts +10 -0
  187. package/config/easy/WhatADessert/config.json +33 -0
  188. package/config/easy/WhatADessert/input/01 - test 1.txt +1 -0
  189. package/config/easy/WhatADessert/input/02 - test 2.txt +1 -0
  190. package/config/easy/WhatADessert/input/03 - test 3.txt +1 -0
  191. package/config/easy/WhatADessert/input/04 - test 4.txt +1 -0
  192. package/config/easy/WhatADessert/input/05 - test 5.txt +1 -0
  193. package/config/easy/WhatADessert/output/01 - test 1.txt +1 -0
  194. package/config/easy/WhatADessert/output/02 - test 2.txt +1 -0
  195. package/config/easy/WhatADessert/output/03 - test 3.txt +1 -0
  196. package/config/easy/WhatADessert/output/04 - test 4.txt +1 -0
  197. package/config/easy/WhatADessert/output/05 - test 5.txt +1 -0
  198. package/config/easy/WhereWasThisKnightBefore/code/CGCode.cpp +25 -0
  199. package/config/easy/WhereWasThisKnightBefore/code/CGCode.java +22 -0
  200. package/config/easy/WhereWasThisKnightBefore/code/CGCode.js +12 -0
  201. package/config/easy/WhereWasThisKnightBefore/code/CGCode.php +15 -0
  202. package/config/easy/WhereWasThisKnightBefore/code/CGCode.ts +12 -0
  203. package/config/easy/WhereWasThisKnightBefore/config.json +38 -0
  204. package/config/easy/WhereWasThisKnightBefore/input/01 - Easy start.txt +17 -0
  205. package/config/easy/WhereWasThisKnightBefore/input/02 - Some action.txt +17 -0
  206. package/config/easy/WhereWasThisKnightBefore/input/03 - Some noise on the board.txt +17 -0
  207. package/config/easy/WhereWasThisKnightBefore/input/04 - Check mate.txt +17 -0
  208. package/config/easy/WhereWasThisKnightBefore/input/05 - Crazy case.txt +17 -0
  209. package/config/easy/WhereWasThisKnightBefore/input/06 - Lots of noise.txt +17 -0
  210. package/config/easy/WhereWasThisKnightBefore/output/01 - Easy start.txt +2 -0
  211. package/config/easy/WhereWasThisKnightBefore/output/02 - Some action.txt +2 -0
  212. package/config/easy/WhereWasThisKnightBefore/output/03 - Some noise on the board.txt +2 -0
  213. package/config/easy/WhereWasThisKnightBefore/output/04 - Check mate.txt +2 -0
  214. package/config/easy/WhereWasThisKnightBefore/output/05 - Crazy case.txt +2 -0
  215. package/config/easy/WhereWasThisKnightBefore/output/06 - Lots of noise.txt +2 -0
  216. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.cpp +28 -0
  217. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.java +24 -0
  218. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.js +15 -0
  219. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.php +16 -0
  220. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.ts +15 -0
  221. package/config/medium/ManaQuestHuntForThePerfectSeven/config.json +68 -0
  222. package/config/medium/ManaQuestHuntForThePerfectSeven/input/01 - Do I have a land.txt +5 -0
  223. package/config/medium/ManaQuestHuntForThePerfectSeven/input/02 - Any card will do.txt +6 -0
  224. package/config/medium/ManaQuestHuntForThePerfectSeven/input/03 - 100%.txt +4 -0
  225. package/config/medium/ManaQuestHuntForThePerfectSeven/input/04 - 0%.txt +4 -0
  226. package/config/medium/ManaQuestHuntForThePerfectSeven/input/05 - 1 Pattern.txt +6 -0
  227. package/config/medium/ManaQuestHuntForThePerfectSeven/input/06 - Overlap.txt +7 -0
  228. package/config/medium/ManaQuestHuntForThePerfectSeven/input/07 - 3 Patterns.txt +13 -0
  229. package/config/medium/ManaQuestHuntForThePerfectSeven/input/08 - 5 Patterns.txt +13 -0
  230. package/config/medium/ManaQuestHuntForThePerfectSeven/input/09 - 6 Patterns.txt +14 -0
  231. package/config/medium/ManaQuestHuntForThePerfectSeven/input/10 - 7 Patterns.txt +16 -0
  232. package/config/medium/ManaQuestHuntForThePerfectSeven/input/11 - 8 Patterns.txt +18 -0
  233. package/config/medium/ManaQuestHuntForThePerfectSeven/input/12 - 8 Patterns Impossible.txt +18 -0
  234. package/config/medium/ManaQuestHuntForThePerfectSeven/output/01 - Do I have a land.txt +1 -0
  235. package/config/medium/ManaQuestHuntForThePerfectSeven/output/02 - Any card will do.txt +1 -0
  236. package/config/medium/ManaQuestHuntForThePerfectSeven/output/03 - 100%.txt +1 -0
  237. package/config/medium/ManaQuestHuntForThePerfectSeven/output/04 - 0%.txt +1 -0
  238. package/config/medium/ManaQuestHuntForThePerfectSeven/output/05 - 1 Pattern.txt +1 -0
  239. package/config/medium/ManaQuestHuntForThePerfectSeven/output/06 - Overlap.txt +1 -0
  240. package/config/medium/ManaQuestHuntForThePerfectSeven/output/07 - 3 Patterns.txt +1 -0
  241. package/config/medium/ManaQuestHuntForThePerfectSeven/output/08 - 5 Patterns.txt +1 -0
  242. package/config/medium/ManaQuestHuntForThePerfectSeven/output/09 - 6 Patterns.txt +1 -0
  243. package/config/medium/ManaQuestHuntForThePerfectSeven/output/10 - 7 Patterns.txt +1 -0
  244. package/config/medium/ManaQuestHuntForThePerfectSeven/output/11 - 8 Patterns.txt +1 -0
  245. package/config/medium/ManaQuestHuntForThePerfectSeven/output/12 - 8 Patterns Impossible.txt +1 -0
  246. package/config/medium/PolygonEquilibrium/code/CGCode.cpp +23 -0
  247. package/config/medium/PolygonEquilibrium/code/CGCode.java +21 -0
  248. package/config/medium/PolygonEquilibrium/code/CGCode.js +12 -0
  249. package/config/medium/PolygonEquilibrium/code/CGCode.php +12 -0
  250. package/config/medium/PolygonEquilibrium/code/CGCode.ts +12 -0
  251. package/config/medium/PolygonEquilibrium/config.json +73 -0
  252. package/config/medium/PolygonEquilibrium/input/01 - Simple triangle.txt +4 -0
  253. package/config/medium/PolygonEquilibrium/input/02 - Tipping triangle.txt +4 -0
  254. package/config/medium/PolygonEquilibrium/input/03 - Trapezoid.txt +5 -0
  255. package/config/medium/PolygonEquilibrium/input/04 - Regular Octogon.txt +9 -0
  256. package/config/medium/PolygonEquilibrium/input/05 - An L-shape.txt +7 -0
  257. package/config/medium/PolygonEquilibrium/input/06 - A T-shape.txt +9 -0
  258. package/config/medium/PolygonEquilibrium/input/07 - test 7.txt +12 -0
  259. package/config/medium/PolygonEquilibrium/input/08 - test 8.txt +18 -0
  260. package/config/medium/PolygonEquilibrium/input/09 - Centroid outside of polygon.txt +19 -0
  261. package/config/medium/PolygonEquilibrium/input/10 - Multiple vertices supporting segment.txt +7 -0
  262. package/config/medium/PolygonEquilibrium/input/11 - Weird shape.txt +12 -0
  263. package/config/medium/PolygonEquilibrium/input/12 - Barely balanced.txt +5 -0
  264. package/config/medium/PolygonEquilibrium/input/13 - CG.txt +43 -0
  265. package/config/medium/PolygonEquilibrium/output/01 - Simple triangle.txt +2 -0
  266. package/config/medium/PolygonEquilibrium/output/02 - Tipping triangle.txt +2 -0
  267. package/config/medium/PolygonEquilibrium/output/03 - Trapezoid.txt +2 -0
  268. package/config/medium/PolygonEquilibrium/output/04 - Regular Octogon.txt +2 -0
  269. package/config/medium/PolygonEquilibrium/output/05 - An L-shape.txt +2 -0
  270. package/config/medium/PolygonEquilibrium/output/06 - A T-shape.txt +2 -0
  271. package/config/medium/PolygonEquilibrium/output/07 - test 7.txt +2 -0
  272. package/config/medium/PolygonEquilibrium/output/08 - test 8.txt +2 -0
  273. package/config/medium/PolygonEquilibrium/output/09 - Centroid outside of polygon.txt +2 -0
  274. package/config/medium/PolygonEquilibrium/output/10 - Multiple vertices supporting segment.txt +2 -0
  275. package/config/medium/PolygonEquilibrium/output/11 - Weird shape.txt +2 -0
  276. package/config/medium/PolygonEquilibrium/output/12 - Barely balanced.txt +2 -0
  277. package/config/medium/PolygonEquilibrium/output/13 - CG.txt +2 -0
  278. package/config/medium/TrigonometrySimplification/code/CGCode.cpp +19 -0
  279. package/config/medium/TrigonometrySimplification/code/CGCode.java +18 -0
  280. package/config/medium/TrigonometrySimplification/code/CGCode.js +9 -0
  281. package/config/medium/TrigonometrySimplification/code/CGCode.php +7 -0
  282. package/config/medium/TrigonometrySimplification/code/CGCode.ts +9 -0
  283. package/config/medium/TrigonometrySimplification/config.json +63 -0
  284. package/config/medium/TrigonometrySimplification/input/01 - test 1.txt +1 -0
  285. package/config/medium/TrigonometrySimplification/input/02 - test 2.txt +1 -0
  286. package/config/medium/TrigonometrySimplification/input/03 - test 3.txt +1 -0
  287. package/config/medium/TrigonometrySimplification/input/04 - test 4.txt +1 -0
  288. package/config/medium/TrigonometrySimplification/input/05 - test 5.txt +1 -0
  289. package/config/medium/TrigonometrySimplification/input/06 - test 6.txt +1 -0
  290. package/config/medium/TrigonometrySimplification/input/07 - test 7.txt +1 -0
  291. package/config/medium/TrigonometrySimplification/input/08 - test 8.txt +1 -0
  292. package/config/medium/TrigonometrySimplification/input/09 - test 9.txt +1 -0
  293. package/config/medium/TrigonometrySimplification/input/10 - test 10.txt +1 -0
  294. package/config/medium/TrigonometrySimplification/input/11 - test 11.txt +1 -0
  295. package/config/medium/TrigonometrySimplification/output/01 - test 1.txt +1 -0
  296. package/config/medium/TrigonometrySimplification/output/02 - test 2.txt +1 -0
  297. package/config/medium/TrigonometrySimplification/output/03 - test 3.txt +1 -0
  298. package/config/medium/TrigonometrySimplification/output/04 - test 4.txt +1 -0
  299. package/config/medium/TrigonometrySimplification/output/05 - test 5.txt +1 -0
  300. package/config/medium/TrigonometrySimplification/output/06 - test 6.txt +1 -0
  301. package/config/medium/TrigonometrySimplification/output/07 - test 7.txt +1 -0
  302. package/config/medium/TrigonometrySimplification/output/08 - test 8.txt +1 -0
  303. package/config/medium/TrigonometrySimplification/output/09 - test 9.txt +1 -0
  304. package/config/medium/TrigonometrySimplification/output/10 - test 10.txt +1 -0
  305. package/config/medium/TrigonometrySimplification/output/11 - test 11.txt +1 -0
  306. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ 99
2
+ DECAFBADCA084C752FA96DEC6F9AB67DEE48DA9775EF6035BCDAC2C306EEC96D14E4D01311023CEB1D73F77C43D549A5264
@@ -0,0 +1,2 @@
1
+ 87
2
+ DECAFBAD0516555D5FE21427D4304CBFE78C4F63F06466F5CB76223299AF915463EB6083896D9F6B7A3DA11
@@ -0,0 +1,2 @@
1
+ 162
2
+ DECAFBAD09600000000000000000000000044444444444444444444EEEEEEEEEEEEEEFFFFFFFFFFFFFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC777777777777AAAAAAAAAAAAAAAAAAAAAA444441
@@ -0,0 +1,2 @@
1
+ 412
2
+ DECAFBAD19022222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222224
@@ -0,0 +1,2 @@
1
+ 558
2
+ DECAF900D221D15606D51B932FF5BD3F040DC7AEE99D1701111F171E62369EE49E17FA1820BAC77D5560F45BA3647438917C913220EA2B9A72BEAF66F8FD77B2F1B3D26C7BE4BF179B977498B2CAC3E1FEA545E101BC0E90E54DB501D0160C4E27B4A348A0BD66F32269F6ABD2A84D2B946C2AA584D72609628D1D7386B8D2EB5004FB3214335E64139B4F026AF185C138C1BF1C6F1D31BAD24BCD8F67D430F2DBAB49F9D5CF646AAFA7A0B134BC6634E286C7B3B08284E4406C523025810A2CE42AD868CA4126224A74B617F2E71FD0888323480296AFE99C8A420326927CAC53BA41A327274602DA79C29C3FB23AAD98DF91A1A23F8961F129C78F1FCD108D134F88EA3216D433DA2956000C0DB6AD7ECE1284A9107D
@@ -0,0 +1,2 @@
1
+ 611
2
+ 0D2F1A99257FEE9DE46F3A91E0825D8BD9335A5D703A3FD418A61B62584786724682A71D5772F73F14140D69C24D807C9ED68B7C1FFCFD6A57EBE7236C5DF4525B58862B2088909B54D983C3529C05DA173E6B9B4C06C3C7F720039EBA21B1F666F8CACFF382C9CC218209BE5519910C0BAB124D39AD2E88D89F8024E4336452FFC33A792F976D07B3592D95DB0084A86CF956AAC9F8AA457B4683F19835AE464091D9B564CF46BF533489E73D0220999B152258B7ACC68493FFA65A5423D33D0E5D7F3D1A9ECF556F767328C2B7AB3C94F2D5431C54EBE8477C667C3BF0973701ABFE31BD63314B4ACD8CABE8AEE7909064819D8649B9E0222B1780A05BF26A8E74370D44EE8DB94E82F8B438B5707F421FB2C4F2B2F7D6124D51077E8B43F585F26AE7254F856F82D80E8BC8E344E9F94
@@ -0,0 +1,2 @@
1
+ 836
2
+ DECAFBAD338CB6CCC4B6F56CDF7281CAF0CE9211FC525A8B72A786A5C02751D114E7EFE51BD0C90D1F32BB768455195B42DC1B612C34CB05E2F9531F726B7D10F21146DC955A53810A280B37BA19C67BAC14CB457F71BCCC338C7D425AA3BDB1F7A4E2D7284745BA484FAF022AF4A0C03454E066A23B8A041CC8F2E9400C86387915728E5486D34BCB7429DB120A8B19DC38FB7FB396337E4E98CEE2E34065D0B1893FC2F960F4FBDD20457EE7B153AF0CFE1844EE51D9F5E289F06BA4AA6001BA58717D1F8FDB8547E9620B84723ADA2FA18030B32A8F851B5B9309B1FE33D613CFEC733DF02136F55C1F19AC70CE4D5621163DFD462209509EEE89FAF8D02159DC2256FB267F4B059DC968D43AE7917E800129E017A213E89E710C4FB91D3595B874838AABEB268D869FE2DADB83CF8CC2B3FC9A795C94E4C4BA77CD7879884730A3BF6B295A6E00ECCE1419D4D1E36F2373D83945C11F92B5DA14A94192BF2A053BDDF5D6E69783035B19C3950026D46B0F3722533B0D287C4B92DDB9BA29F9CC15E08FCD13DF586714806184441319206C919723F2EE1763254F5089881F42BA
@@ -0,0 +1,2 @@
1
+ 915
2
+ 0000000DECAFBAD380474BD5339636A32FE6EEB370F97980165EA6C5F4C6F1ADA8ED5884EF8058E5D66DF138ACA7BB3CF80C06BBC0FF67367E0B192300C5696C381218CCFA4BDA6F9E0EA6B0CD09520B7093FB523A886DD46D30566CBBF138E89E6D0441F0EAC4CB2CA4959A9AAF92DD5410ACE8EAEE4C32F143F6DBFC2C2402EE66795425EF3B1084A3BB317A826E3381CC552DF5C867B4B9E9A54C6AEF2116B9F4DA99A8F433235FB2819955A9593E8C8B90DBB8689CE601CBE7774F561942BB330AC863AD833B532F5F6EBB9C5C31C6DF7B8066F2E170D66B78B8D07D7787520A42ABE34741DD82C2F92792F790E3BD0B2C79D3D5C50722EE85C58AC4C332DF9253C9DA5D131EDD347207FE1EA655A7B31E23DFA20EEDCEDD30274F31F5394B863317BA7665415595A1006F783B0078A11CD2F016AFE19D1959A4D891F56B804144B1CB02106BACD91D76F78F280C7E2299867A9E70C7DBF952778DE826D71FA3E3AFBCC0317B7E1740948C865FB6BECC45ADB1EBCBC2119246ECF9E9E357415E8250879E4C776592360FCF8837F9C37B501DAC6CC5FF1F39BB8E409FCCE9F3E582957EE329D1C334924F6FCADE8A9B6C051985A0B020C54983CFFE00C01EEF36E08DF8ECA8175BC
@@ -0,0 +1,2 @@
1
+ 996
2
+ DECAFBAD3D8C0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEC0FFEEE
@@ -0,0 +1,2 @@
1
+ 995
2
+ DECAFBAD3D8170F0E8354BB2C992E9CE24D1D10B68AF44EC1FADE73A3A0EB9E4F382C0B7A17105C398B9CB7EE8ADBFB63C5962FBF1AD7CCBA47CAB9203C335C908C7B58F4A186F09DCD2935ACFC2038CE769DF54B631777DAD605469C5B995F074B7E216E3435D056E2F74BAEBF7EEE6588A64114D2C511478DBDAE088DE22696697D155551E6A3822330BFB0C758757A3FC9001CB6910BC45754D55C35BE0A96B97CC2591F4BF849C83A426B142D9F78B752C19C4392912969C9080E00353236BF2C56D69002CF77F1455BCE34C820A0C9325DAD2A7950AD89F96F8748721B00AD05AE8CDC68EADB57A009EBE30C2CC59BECB91AC7708DE0C1B1981C95CCD5E66CA8001013C143ED3A88D3DE1B703347B47E91C13DA436937CD5B1C94E4E335E6719343A9FF0C9637E1EE82CD9C3B58DA932B5B256A7A65940681591BBDC0984D7DA30B4BD59F8F92B372FCCF9644F2BC20E84B390881BA893942D337A689A94CE5F329F76248443C3931B7A9C9DF223F670FB6C47F151730C21F50FDF180DCD36D777013B9C7ABA6C4D8D2B812528940BB577F683C4AAA6EB45A3CECF1D5B8A7F529D45EAD115DB3D6D2B18052EC6033655569F002221D8BBF07C2A86BD97E0984D46951E4CFA026CB2480311EB78CD3032991A2392FA01B1BB82F9800656C5C6ACA09FBED4C83B93D016FE181F2C47D4
@@ -0,0 +1,6 @@
1
+ 2 4
2
+ 1 C
3
+ 1 2
4
+ 1 3
5
+ 1 A
6
+ 1 5
@@ -0,0 +1,16 @@
1
+ 3 A
2
+ 4 5
3
+ 2 0
4
+ 2 1
5
+ 8 C
6
+ 7 B
7
+ 6 2
8
+ 5 7
9
+ 4 3
10
+ 2 F
11
+ 4 6
12
+ 2 D
13
+ 3 9
14
+ 3 E
15
+ 2 8
16
+ 2 4
@@ -0,0 +1,7 @@
1
+ 24 0
2
+ 25 4
3
+ 14 E
4
+ 14 F
5
+ 39 C
6
+ 12 7
7
+ 22 A
@@ -0,0 +1,16 @@
1
+ 54 C
2
+ 57 B
3
+ 40 6
4
+ 54 4
5
+ 55 F
6
+ 51 5
7
+ 47 D
8
+ 48 7
9
+ 59 2
10
+ 53 8
11
+ 64 1
12
+ 42 A
13
+ 51 0
14
+ 43 E
15
+ 53 9
16
+ 53 3
@@ -0,0 +1,4 @@
1
+ 164 C
2
+ 164 0
3
+ 328 F
4
+ 328 E
@@ -0,0 +1,28 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int m;
11
+ cin >> m; cin.ignore();
12
+ for (int i = 0; i < m; i++) {
13
+ string card;
14
+ cin >> card; cin.ignore();
15
+ }
16
+ int n;
17
+ cin >> n; cin.ignore();
18
+ for (int i = 0; i < n; i++) {
19
+ string card;
20
+ cin >> card; cin.ignore();
21
+ }
22
+
23
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
24
+ // To debug: cerr << "Debug messages..." << endl;
25
+
26
+ cout << "Winner: Player 1/Player 2" << endl;
27
+ cout << "Number of cards" << endl;
28
+ }
@@ -0,0 +1,24 @@
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 m = in.nextInt();
10
+ for (int i = 0; i < m; i++) {
11
+ String card = in.next();
12
+ }
13
+ int n = in.nextInt();
14
+ for (int i = 0; i < n; i++) {
15
+ String card = in.next();
16
+ }
17
+
18
+ // Write an answer using System.out.println()
19
+ // To debug: System.err.println("Debug messages...");
20
+
21
+ System.out.println("Winner: Player 1/Player 2");
22
+ System.out.println("Number of cards");
23
+ }
24
+ }
@@ -0,0 +1,14 @@
1
+ const m = parseInt(readline());
2
+ for (let i = 0; i < m; i++) {
3
+ const card = readline();
4
+ }
5
+ const n = parseInt(readline());
6
+ for (let i = 0; i < n; i++) {
7
+ const card = readline();
8
+ }
9
+
10
+ // Write an answer using console.log()
11
+ // To debug: console.error('Debug messages...');
12
+
13
+ console.log('Winner: Player 1/Player 2');
14
+ console.log('Number of cards');
@@ -0,0 +1,17 @@
1
+ <?php
2
+ fscanf(STDIN, "%d", $m);
3
+ for ($i = 0; $i < $m; $i++)
4
+ {
5
+ fscanf(STDIN, "%s", $card);
6
+ }
7
+ fscanf(STDIN, "%d", $n);
8
+ for ($i = 0; $i < $n; $i++)
9
+ {
10
+ fscanf(STDIN, "%s", $card);
11
+ }
12
+
13
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
14
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
15
+
16
+ echo("Winner: Player 1/Player 2\n");
17
+ echo("Number of cards\n");
@@ -0,0 +1,14 @@
1
+ const m: number = parseInt(readline());
2
+ for (let i = 0; i < m; i++) {
3
+ const card: string = readline();
4
+ }
5
+ const n: number = parseInt(readline());
6
+ for (let i = 0; i < n; i++) {
7
+ const card: string = readline();
8
+ }
9
+
10
+ // Write an answer using console.log()
11
+ // To debug: console.error('Debug messages...');
12
+
13
+ console.log('Winner: Player 1/Player 2');
14
+ console.log('Number of cards');
@@ -0,0 +1,93 @@
1
+ {
2
+ "path": "easy/Snap",
3
+ "name": "Snap!",
4
+ "alphanumName": "Snap",
5
+ "link": "https://www.codingame.com/ide/puzzle/snap",
6
+ "tests": [
7
+ {
8
+ "name": "Player 1 Win",
9
+ "alphanumName": "Player1Win",
10
+ "file": "01 - Player 1 Win.txt"
11
+ },
12
+ {
13
+ "name": "Player 2 Win",
14
+ "alphanumName": "Player2Win",
15
+ "file": "02 - Player 2 Win.txt"
16
+ },
17
+ {
18
+ "name": "Snapless",
19
+ "alphanumName": "Snapless",
20
+ "file": "03 - Snapless.txt"
21
+ },
22
+ {
23
+ "name": "Clutch Save",
24
+ "alphanumName": "ClutchSave",
25
+ "file": "04 - Clutch Save.txt"
26
+ },
27
+ {
28
+ "name": "Almost Clutch Save",
29
+ "alphanumName": "AlmostClutchSave",
30
+ "file": "05 - Almost Clutch Save.txt"
31
+ },
32
+ {
33
+ "name": "Quick Game",
34
+ "alphanumName": "QuickGame",
35
+ "file": "06 - Quick Game.txt"
36
+ },
37
+ {
38
+ "name": "Very Quick Game",
39
+ "alphanumName": "VeryQuickGame",
40
+ "file": "07 - Very Quick Game.txt"
41
+ },
42
+ {
43
+ "name": "Lucky Shuffle",
44
+ "alphanumName": "LuckyShuffle",
45
+ "file": "08 - Lucky Shuffle.txt"
46
+ },
47
+ {
48
+ "name": "Unfair Shuffle 1",
49
+ "alphanumName": "UnfairShuffle1",
50
+ "file": "09 - Unfair Shuffle 1.txt"
51
+ },
52
+ {
53
+ "name": "Unfair Shuffle 2",
54
+ "alphanumName": "UnfairShuffle2",
55
+ "file": "10 - Unfair Shuffle 2.txt"
56
+ },
57
+ {
58
+ "name": "Unfair Shuffle 3",
59
+ "alphanumName": "UnfairShuffle3",
60
+ "file": "11 - Unfair Shuffle 3.txt"
61
+ },
62
+ {
63
+ "name": "Standard Deck 1",
64
+ "alphanumName": "StandardDeck1",
65
+ "file": "12 - Standard Deck 1.txt"
66
+ },
67
+ {
68
+ "name": "Standard Deck 2",
69
+ "alphanumName": "StandardDeck2",
70
+ "file": "13 - Standard Deck 2.txt"
71
+ },
72
+ {
73
+ "name": "Standard Deck 3",
74
+ "alphanumName": "StandardDeck3",
75
+ "file": "14 - Standard Deck 3.txt"
76
+ },
77
+ {
78
+ "name": "Standard Deck 4",
79
+ "alphanumName": "StandardDeck4",
80
+ "file": "15 - Standard Deck 4.txt"
81
+ },
82
+ {
83
+ "name": "Standard Deck 5",
84
+ "alphanumName": "StandardDeck5",
85
+ "file": "16 - Standard Deck 5.txt"
86
+ },
87
+ {
88
+ "name": "Standard Deck 6",
89
+ "alphanumName": "StandardDeck6",
90
+ "file": "17 - Standard Deck 6.txt"
91
+ }
92
+ ]
93
+ }
@@ -0,0 +1,10 @@
1
+ 4
2
+ 5S
3
+ 6D
4
+ 5D
5
+ 10D
6
+ 4
7
+ 3H
8
+ 7S
9
+ 5C
10
+ KH
@@ -0,0 +1,12 @@
1
+ 5
2
+ 3S
3
+ 5D
4
+ KC
5
+ 3C
6
+ 4H
7
+ 5
8
+ JH
9
+ 9C
10
+ KS
11
+ 8H
12
+ JC
@@ -0,0 +1,22 @@
1
+ 10
2
+ 6D
3
+ 3C
4
+ 7D
5
+ 2D
6
+ 2S
7
+ 7S
8
+ 8S
9
+ 3H
10
+ JD
11
+ QD
12
+ 10
13
+ KS
14
+ 4H
15
+ 6S
16
+ 9C
17
+ JC
18
+ 5C
19
+ JS
20
+ KH
21
+ 4C
22
+ JH
@@ -0,0 +1,30 @@
1
+ 14
2
+ JC
3
+ 8C
4
+ 4C
5
+ 3S
6
+ AC
7
+ 6D
8
+ 7C
9
+ QH
10
+ 4S
11
+ 5C
12
+ 6H
13
+ 2C
14
+ KD
15
+ 8S
16
+ 14
17
+ 3D
18
+ 9H
19
+ QC
20
+ KH
21
+ 7S
22
+ 5D
23
+ KS
24
+ 5H
25
+ KC
26
+ 8D
27
+ 7D
28
+ JH
29
+ 8H
30
+ 9D
@@ -0,0 +1,54 @@
1
+ 26
2
+ QD
3
+ 10D
4
+ 8C
5
+ 5H
6
+ KC
7
+ 8S
8
+ 9D
9
+ 9H
10
+ AH
11
+ 7D
12
+ 4C
13
+ 2D
14
+ 7H
15
+ QS
16
+ 4S
17
+ 3D
18
+ 10H
19
+ KH
20
+ 7S
21
+ 6S
22
+ 6H
23
+ 6C
24
+ 7C
25
+ 8D
26
+ 4D
27
+ 5C
28
+ 26
29
+ 3S
30
+ QC
31
+ 2S
32
+ AC
33
+ JH
34
+ 2C
35
+ KD
36
+ 10S
37
+ 4H
38
+ KS
39
+ 5S
40
+ QH
41
+ 9S
42
+ 2H
43
+ JD
44
+ JC
45
+ 9C
46
+ 6D
47
+ 8H
48
+ AD
49
+ JS
50
+ 3C
51
+ 10C
52
+ 3H
53
+ 5D
54
+ AS
@@ -0,0 +1,4 @@
1
+ 1
2
+ 10D
3
+ 1
4
+ KH
@@ -0,0 +1,22 @@
1
+ 10
2
+ 2S
3
+ AS
4
+ 5D
5
+ QS
6
+ 8C
7
+ 4D
8
+ 7H
9
+ 8H
10
+ JS
11
+ 3H
12
+ 10
13
+ 2C
14
+ AC
15
+ 5H
16
+ QC
17
+ 8D
18
+ 4H
19
+ 7S
20
+ 8S
21
+ JC
22
+ 3S
@@ -0,0 +1,24 @@
1
+ 5
2
+ 8C
3
+ 9C
4
+ 3S
5
+ 2D
6
+ AH
7
+ 17
8
+ 5C
9
+ 5S
10
+ 6D
11
+ 2C
12
+ 10H
13
+ 4C
14
+ AD
15
+ 5H
16
+ 10D
17
+ 10C
18
+ 2S
19
+ 10S
20
+ 8S
21
+ 5D
22
+ 7C
23
+ 9S
24
+ JC
@@ -0,0 +1,25 @@
1
+ 19
2
+ 2C
3
+ 8C
4
+ JD
5
+ QC
6
+ 6C
7
+ JS
8
+ 10S
9
+ 2S
10
+ 7C
11
+ AD
12
+ 4D
13
+ 3C
14
+ 4S
15
+ JH
16
+ 5C
17
+ 2D
18
+ 4C
19
+ 3S
20
+ 8D
21
+ 4
22
+ 9C
23
+ 8S
24
+ 7S
25
+ QS
@@ -0,0 +1,54 @@
1
+ 51
2
+ 10D
3
+ 6H
4
+ 10C
5
+ AD
6
+ 7D
7
+ 9S
8
+ 3H
9
+ 2D
10
+ 3S
11
+ 8S
12
+ 8D
13
+ JS
14
+ KH
15
+ 4S
16
+ QD
17
+ QH
18
+ AH
19
+ 6C
20
+ JC
21
+ 5S
22
+ KD
23
+ 6D
24
+ 8H
25
+ 4C
26
+ 5C
27
+ 4H
28
+ 2H
29
+ JD
30
+ 10H
31
+ 9H
32
+ 9C
33
+ 2C
34
+ KC
35
+ 2S
36
+ JH
37
+ 6S
38
+ 7S
39
+ 5D
40
+ AC
41
+ 9D
42
+ AS
43
+ 7C
44
+ 8C
45
+ QS
46
+ QC
47
+ 5H
48
+ 3C
49
+ 10S
50
+ 4D
51
+ 7H
52
+ KS
53
+ 1
54
+ 3D
@@ -0,0 +1,54 @@
1
+ 26
2
+ 7H
3
+ KS
4
+ 5C
5
+ 5D
6
+ 8C
7
+ 2D
8
+ 8D
9
+ 6S
10
+ KC
11
+ 7C
12
+ 6C
13
+ 4C
14
+ 6H
15
+ 8S
16
+ KD
17
+ JH
18
+ 10H
19
+ QS
20
+ 3S
21
+ 8H
22
+ AS
23
+ AD
24
+ 3D
25
+ 2S
26
+ 4D
27
+ 10S
28
+ 26
29
+ 3H
30
+ 9D
31
+ QC
32
+ 2C
33
+ 7S
34
+ 10D
35
+ AH
36
+ JD
37
+ 4H
38
+ 7D
39
+ 10C
40
+ 2H
41
+ 9C
42
+ QH
43
+ 4S
44
+ 9H
45
+ 5H
46
+ QD
47
+ 5S
48
+ JC
49
+ 9S
50
+ KH
51
+ 3C
52
+ JS
53
+ AC
54
+ 6D