@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.
- package/CHANGELOG.md +17 -0
- package/config/easy/LaughterIsContagious/code/CGCode.cpp +17 -0
- package/config/easy/LaughterIsContagious/code/CGCode.java +16 -0
- package/config/easy/LaughterIsContagious/code/CGCode.js +6 -0
- package/config/easy/LaughterIsContagious/code/CGCode.php +7 -0
- package/config/easy/LaughterIsContagious/code/CGCode.ts +6 -0
- package/config/easy/LaughterIsContagious/config.json +68 -0
- package/config/easy/LaughterIsContagious/input/01 - Everybody laughing.txt +1 -0
- package/config/easy/LaughterIsContagious/input/02 - Too far.txt +1 -0
- package/config/easy/LaughterIsContagious/input/03 - Example.txt +1 -0
- package/config/easy/LaughterIsContagious/input/04 - Very funny.txt +1 -0
- package/config/easy/LaughterIsContagious/input/05 - Not funny.txt +1 -0
- package/config/easy/LaughterIsContagious/input/06 - Lonely.txt +1 -0
- package/config/easy/LaughterIsContagious/input/07 - Solidarity.txt +1 -0
- package/config/easy/LaughterIsContagious/input/08 - Big show.txt +1 -0
- package/config/easy/LaughterIsContagious/input/09 - Very big show.txt +1 -0
- package/config/easy/LaughterIsContagious/input/10 - One Man Show.txt +1 -0
- package/config/easy/LaughterIsContagious/input/11 - Duo.txt +1 -0
- package/config/easy/LaughterIsContagious/input/12 - Trio.txt +1 -0
- package/config/easy/LaughterIsContagious/output/01 - Everybody laughing.txt +1 -0
- package/config/easy/LaughterIsContagious/output/02 - Too far.txt +1 -0
- package/config/easy/LaughterIsContagious/output/03 - Example.txt +1 -0
- package/config/easy/LaughterIsContagious/output/04 - Very funny.txt +1 -0
- package/config/easy/LaughterIsContagious/output/05 - Not funny.txt +1 -0
- package/config/easy/LaughterIsContagious/output/06 - Lonely.txt +1 -0
- package/config/easy/LaughterIsContagious/output/07 - Solidarity.txt +1 -0
- package/config/easy/LaughterIsContagious/output/08 - Big show.txt +1 -0
- package/config/easy/LaughterIsContagious/output/09 - Very big show.txt +1 -0
- package/config/easy/LaughterIsContagious/output/10 - One Man Show.txt +1 -0
- package/config/easy/LaughterIsContagious/output/11 - Duo.txt +1 -0
- package/config/easy/LaughterIsContagious/output/12 - Trio.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.cpp +19 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.java +18 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.js +8 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.php +9 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.ts +8 -0
- package/config/easy/MiniCPUInstructionDecoder/config.json +63 -0
- package/config/easy/MiniCPUInstructionDecoder/input/01 - Boot Sequence.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/02 - Multiply Core.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/03 - INC and DEC.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/04 - INC Overflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/05 - DEC Underflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/06 - ADD Overflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/07 - SUB Underflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/08 - MUL Overflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/09 - Mixed Operations.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/10 - Immediate Halt.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/11 - MOV Overwrite.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/output/01 - Boot Sequence.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/02 - Multiply Core.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/03 - INC and DEC.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/04 - INC Overflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/05 - DEC Underflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/06 - ADD Overflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/07 - SUB Underflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/08 - MUL Overflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/09 - Mixed Operations.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/10 - Immediate Halt.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/11 - MOV Overwrite.txt +4 -0
- package/config/easy/RequestValidator/code/CGCode.cpp +19 -0
- package/config/easy/RequestValidator/code/CGCode.java +17 -0
- package/config/easy/RequestValidator/code/CGCode.js +7 -0
- package/config/easy/RequestValidator/code/CGCode.php +8 -0
- package/config/easy/RequestValidator/code/CGCode.ts +7 -0
- package/config/easy/RequestValidator/config.json +83 -0
- package/config/easy/RequestValidator/input/01 - Order Up!.txt +2 -0
- package/config/easy/RequestValidator/input/02 - Corrupted.txt +2 -0
- package/config/easy/RequestValidator/input/03 - One Cup.txt +2 -0
- package/config/easy/RequestValidator/input/04 - Checksum Error.txt +2 -0
- package/config/easy/RequestValidator/input/05 - Department Fix.txt +2 -0
- package/config/easy/RequestValidator/input/06 - Mismatched Order.txt +2 -0
- package/config/easy/RequestValidator/input/07 - Misplaced Order.txt +2 -0
- package/config/easy/RequestValidator/input/08 - Order Zero.txt +2 -0
- package/config/easy/RequestValidator/input/09 - Standardised Order.txt +2 -0
- package/config/easy/RequestValidator/input/10 - Decaffeinated Coffee.txt +2 -0
- package/config/easy/RequestValidator/input/11 - Invalid Header.txt +2 -0
- package/config/easy/RequestValidator/input/12 - Infinite Stock.txt +2 -0
- package/config/easy/RequestValidator/input/13 - Padded Frame.txt +2 -0
- package/config/easy/RequestValidator/input/14 - 0xC0FFEE.txt +2 -0
- package/config/easy/RequestValidator/input/15 - Missing Checksum.txt +2 -0
- package/config/easy/RequestValidator/output/01 - Order Up!.txt +6 -0
- package/config/easy/RequestValidator/output/02 - Corrupted.txt +1 -0
- package/config/easy/RequestValidator/output/03 - One Cup.txt +1 -0
- package/config/easy/RequestValidator/output/04 - Checksum Error.txt +1 -0
- package/config/easy/RequestValidator/output/05 - Department Fix.txt +16 -0
- package/config/easy/RequestValidator/output/06 - Mismatched Order.txt +1 -0
- package/config/easy/RequestValidator/output/07 - Misplaced Order.txt +1 -0
- package/config/easy/RequestValidator/output/08 - Order Zero.txt +7 -0
- package/config/easy/RequestValidator/output/09 - Standardised Order.txt +1 -0
- package/config/easy/RequestValidator/output/10 - Decaffeinated Coffee.txt +1 -0
- package/config/easy/RequestValidator/output/11 - Invalid Header.txt +1 -0
- package/config/easy/RequestValidator/output/12 - Infinite Stock.txt +16 -0
- package/config/easy/RequestValidator/output/13 - Padded Frame.txt +1 -0
- package/config/easy/RequestValidator/output/14 - 0xC0FFEE.txt +4 -0
- package/config/easy/RequestValidator/output/15 - Missing Checksum.txt +1 -0
- package/config/easy/Snap/code/CGCode.cpp +28 -0
- package/config/easy/Snap/code/CGCode.java +24 -0
- package/config/easy/Snap/code/CGCode.js +14 -0
- package/config/easy/Snap/code/CGCode.php +17 -0
- package/config/easy/Snap/code/CGCode.ts +14 -0
- package/config/easy/Snap/config.json +93 -0
- package/config/easy/Snap/input/01 - Player 1 Win.txt +10 -0
- package/config/easy/Snap/input/02 - Player 2 Win.txt +12 -0
- package/config/easy/Snap/input/03 - Snapless.txt +22 -0
- package/config/easy/Snap/input/04 - Clutch Save.txt +30 -0
- package/config/easy/Snap/input/05 - Almost Clutch Save.txt +54 -0
- package/config/easy/Snap/input/06 - Quick Game.txt +4 -0
- package/config/easy/Snap/input/07 - Very Quick Game.txt +3 -0
- package/config/easy/Snap/input/08 - Lucky Shuffle.txt +22 -0
- package/config/easy/Snap/input/09 - Unfair Shuffle 1.txt +24 -0
- package/config/easy/Snap/input/10 - Unfair Shuffle 2.txt +25 -0
- package/config/easy/Snap/input/11 - Unfair Shuffle 3.txt +54 -0
- package/config/easy/Snap/input/12 - Standard Deck 1.txt +54 -0
- package/config/easy/Snap/input/13 - Standard Deck 2.txt +54 -0
- package/config/easy/Snap/input/14 - Standard Deck 3.txt +54 -0
- package/config/easy/Snap/input/15 - Standard Deck 4.txt +54 -0
- package/config/easy/Snap/input/16 - Standard Deck 5.txt +54 -0
- package/config/easy/Snap/input/17 - Standard Deck 6.txt +54 -0
- package/config/easy/Snap/output/01 - Player 1 Win.txt +2 -0
- package/config/easy/Snap/output/02 - Player 2 Win.txt +2 -0
- package/config/easy/Snap/output/03 - Snapless.txt +2 -0
- package/config/easy/Snap/output/04 - Clutch Save.txt +2 -0
- package/config/easy/Snap/output/05 - Almost Clutch Save.txt +2 -0
- package/config/easy/Snap/output/06 - Quick Game.txt +2 -0
- package/config/easy/Snap/output/07 - Very Quick Game.txt +2 -0
- package/config/easy/Snap/output/08 - Lucky Shuffle.txt +2 -0
- package/config/easy/Snap/output/09 - Unfair Shuffle 1.txt +2 -0
- package/config/easy/Snap/output/10 - Unfair Shuffle 2.txt +2 -0
- package/config/easy/Snap/output/11 - Unfair Shuffle 3.txt +2 -0
- package/config/easy/Snap/output/12 - Standard Deck 1.txt +2 -0
- package/config/easy/Snap/output/13 - Standard Deck 2.txt +2 -0
- package/config/easy/Snap/output/14 - Standard Deck 3.txt +2 -0
- package/config/easy/Snap/output/15 - Standard Deck 4.txt +2 -0
- package/config/easy/Snap/output/16 - Standard Deck 5.txt +2 -0
- package/config/easy/Snap/output/17 - Standard Deck 6.txt +2 -0
- package/config/easy/SolarShadowHunter/code/CGCode.cpp +24 -0
- package/config/easy/SolarShadowHunter/code/CGCode.java +24 -0
- package/config/easy/SolarShadowHunter/code/CGCode.js +12 -0
- package/config/easy/SolarShadowHunter/code/CGCode.php +12 -0
- package/config/easy/SolarShadowHunter/code/CGCode.ts +12 -0
- package/config/easy/SolarShadowHunter/config.json +43 -0
- package/config/easy/SolarShadowHunter/input/01 - test 1.txt +7 -0
- package/config/easy/SolarShadowHunter/input/02 - test 2.txt +6 -0
- package/config/easy/SolarShadowHunter/input/03 - test 3.txt +8 -0
- package/config/easy/SolarShadowHunter/input/04 - test 4.txt +6 -0
- package/config/easy/SolarShadowHunter/input/05 - test 5.txt +7 -0
- package/config/easy/SolarShadowHunter/input/06 - test 6.txt +22 -0
- package/config/easy/SolarShadowHunter/input/07 - test 7.txt +32 -0
- package/config/easy/SolarShadowHunter/output/01 - test 1.txt +1 -0
- package/config/easy/SolarShadowHunter/output/02 - test 2.txt +1 -0
- package/config/easy/SolarShadowHunter/output/03 - test 3.txt +1 -0
- package/config/easy/SolarShadowHunter/output/04 - test 4.txt +1 -0
- package/config/easy/SolarShadowHunter/output/05 - test 5.txt +1 -0
- package/config/easy/SolarShadowHunter/output/06 - test 6.txt +1 -0
- package/config/easy/SolarShadowHunter/output/07 - test 7.txt +1 -0
- package/config/easy/TheDescentPart2/code/CGCode.cpp +29 -0
- package/config/easy/TheDescentPart2/code/CGCode.java +25 -0
- package/config/easy/TheDescentPart2/code/CGCode.js +18 -0
- package/config/easy/TheDescentPart2/code/CGCode.php +17 -0
- package/config/easy/TheDescentPart2/code/CGCode.ts +18 -0
- package/config/easy/TheDescentPart2/config.json +58 -0
- package/config/easy/TheDescentPart2/input/01 - test 1.txt +7 -0
- package/config/easy/TheDescentPart2/input/02 - test 2.txt +10 -0
- package/config/easy/TheDescentPart2/input/03 - test 3.txt +14 -0
- package/config/easy/TheDescentPart2/input/04 - test 4.txt +9 -0
- package/config/easy/TheDescentPart2/input/05 - test 5.txt +15 -0
- package/config/easy/TheDescentPart2/input/06 - test 6.txt +10 -0
- package/config/easy/TheDescentPart2/input/07 - test 7.txt +13 -0
- package/config/easy/TheDescentPart2/input/08 - test 8.txt +10 -0
- package/config/easy/TheDescentPart2/input/09 - test 9.txt +18 -0
- package/config/easy/TheDescentPart2/input/10 - test 10.txt +18 -0
- package/config/easy/TheDescentPart2/output/01 - test 1.txt +1 -0
- package/config/easy/TheDescentPart2/output/02 - test 2.txt +1 -0
- package/config/easy/TheDescentPart2/output/03 - test 3.txt +1 -0
- package/config/easy/TheDescentPart2/output/04 - test 4.txt +1 -0
- package/config/easy/TheDescentPart2/output/05 - test 5.txt +1 -0
- package/config/easy/TheDescentPart2/output/06 - test 6.txt +1 -0
- package/config/easy/TheDescentPart2/output/07 - test 7.txt +1 -0
- package/config/easy/TheDescentPart2/output/08 - test 8.txt +1 -0
- package/config/easy/TheDescentPart2/output/09 - test 9.txt +1 -0
- package/config/easy/TheDescentPart2/output/10 - test 10.txt +1 -0
- package/config/easy/WhatADessert/code/CGCode.cpp +20 -0
- package/config/easy/WhatADessert/code/CGCode.java +19 -0
- package/config/easy/WhatADessert/code/CGCode.js +10 -0
- package/config/easy/WhatADessert/code/CGCode.php +7 -0
- package/config/easy/WhatADessert/code/CGCode.ts +10 -0
- package/config/easy/WhatADessert/config.json +33 -0
- package/config/easy/WhatADessert/input/01 - test 1.txt +1 -0
- package/config/easy/WhatADessert/input/02 - test 2.txt +1 -0
- package/config/easy/WhatADessert/input/03 - test 3.txt +1 -0
- package/config/easy/WhatADessert/input/04 - test 4.txt +1 -0
- package/config/easy/WhatADessert/input/05 - test 5.txt +1 -0
- package/config/easy/WhatADessert/output/01 - test 1.txt +1 -0
- package/config/easy/WhatADessert/output/02 - test 2.txt +1 -0
- package/config/easy/WhatADessert/output/03 - test 3.txt +1 -0
- package/config/easy/WhatADessert/output/04 - test 4.txt +1 -0
- package/config/easy/WhatADessert/output/05 - test 5.txt +1 -0
- package/config/easy/WhereWasThisKnightBefore/code/CGCode.cpp +25 -0
- package/config/easy/WhereWasThisKnightBefore/code/CGCode.java +22 -0
- package/config/easy/WhereWasThisKnightBefore/code/CGCode.js +12 -0
- package/config/easy/WhereWasThisKnightBefore/code/CGCode.php +15 -0
- package/config/easy/WhereWasThisKnightBefore/code/CGCode.ts +12 -0
- package/config/easy/WhereWasThisKnightBefore/config.json +38 -0
- package/config/easy/WhereWasThisKnightBefore/input/01 - Easy start.txt +17 -0
- package/config/easy/WhereWasThisKnightBefore/input/02 - Some action.txt +17 -0
- package/config/easy/WhereWasThisKnightBefore/input/03 - Some noise on the board.txt +17 -0
- package/config/easy/WhereWasThisKnightBefore/input/04 - Check mate.txt +17 -0
- package/config/easy/WhereWasThisKnightBefore/input/05 - Crazy case.txt +17 -0
- package/config/easy/WhereWasThisKnightBefore/input/06 - Lots of noise.txt +17 -0
- package/config/easy/WhereWasThisKnightBefore/output/01 - Easy start.txt +2 -0
- package/config/easy/WhereWasThisKnightBefore/output/02 - Some action.txt +2 -0
- package/config/easy/WhereWasThisKnightBefore/output/03 - Some noise on the board.txt +2 -0
- package/config/easy/WhereWasThisKnightBefore/output/04 - Check mate.txt +2 -0
- package/config/easy/WhereWasThisKnightBefore/output/05 - Crazy case.txt +2 -0
- package/config/easy/WhereWasThisKnightBefore/output/06 - Lots of noise.txt +2 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.cpp +28 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.java +24 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.js +15 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.php +16 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.ts +15 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/config.json +68 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/01 - Do I have a land.txt +5 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/02 - Any card will do.txt +6 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/03 - 100%.txt +4 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/04 - 0%.txt +4 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/05 - 1 Pattern.txt +6 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/06 - Overlap.txt +7 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/07 - 3 Patterns.txt +13 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/08 - 5 Patterns.txt +13 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/09 - 6 Patterns.txt +14 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/10 - 7 Patterns.txt +16 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/11 - 8 Patterns.txt +18 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/input/12 - 8 Patterns Impossible.txt +18 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/01 - Do I have a land.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/02 - Any card will do.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/03 - 100%.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/04 - 0%.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/05 - 1 Pattern.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/06 - Overlap.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/07 - 3 Patterns.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/08 - 5 Patterns.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/09 - 6 Patterns.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/10 - 7 Patterns.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/11 - 8 Patterns.txt +1 -0
- package/config/medium/ManaQuestHuntForThePerfectSeven/output/12 - 8 Patterns Impossible.txt +1 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.cpp +23 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.java +21 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.js +12 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.php +12 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.ts +12 -0
- package/config/medium/PolygonEquilibrium/config.json +73 -0
- package/config/medium/PolygonEquilibrium/input/01 - Simple triangle.txt +4 -0
- package/config/medium/PolygonEquilibrium/input/02 - Tipping triangle.txt +4 -0
- package/config/medium/PolygonEquilibrium/input/03 - Trapezoid.txt +5 -0
- package/config/medium/PolygonEquilibrium/input/04 - Regular Octogon.txt +9 -0
- package/config/medium/PolygonEquilibrium/input/05 - An L-shape.txt +7 -0
- package/config/medium/PolygonEquilibrium/input/06 - A T-shape.txt +9 -0
- package/config/medium/PolygonEquilibrium/input/07 - test 7.txt +12 -0
- package/config/medium/PolygonEquilibrium/input/08 - test 8.txt +18 -0
- package/config/medium/PolygonEquilibrium/input/09 - Centroid outside of polygon.txt +19 -0
- package/config/medium/PolygonEquilibrium/input/10 - Multiple vertices supporting segment.txt +7 -0
- package/config/medium/PolygonEquilibrium/input/11 - Weird shape.txt +12 -0
- package/config/medium/PolygonEquilibrium/input/12 - Barely balanced.txt +5 -0
- package/config/medium/PolygonEquilibrium/input/13 - CG.txt +43 -0
- package/config/medium/PolygonEquilibrium/output/01 - Simple triangle.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/02 - Tipping triangle.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/03 - Trapezoid.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/04 - Regular Octogon.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/05 - An L-shape.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/06 - A T-shape.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/07 - test 7.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/08 - test 8.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/09 - Centroid outside of polygon.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/10 - Multiple vertices supporting segment.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/11 - Weird shape.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/12 - Barely balanced.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/13 - CG.txt +2 -0
- package/config/medium/TrigonometrySimplification/code/CGCode.cpp +19 -0
- package/config/medium/TrigonometrySimplification/code/CGCode.java +18 -0
- package/config/medium/TrigonometrySimplification/code/CGCode.js +9 -0
- package/config/medium/TrigonometrySimplification/code/CGCode.php +7 -0
- package/config/medium/TrigonometrySimplification/code/CGCode.ts +9 -0
- package/config/medium/TrigonometrySimplification/config.json +63 -0
- package/config/medium/TrigonometrySimplification/input/01 - test 1.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/02 - test 2.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/03 - test 3.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/04 - test 4.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/05 - test 5.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/06 - test 6.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/07 - test 7.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/08 - test 8.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/09 - test 9.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/10 - test 10.txt +1 -0
- package/config/medium/TrigonometrySimplification/input/11 - test 11.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/01 - test 1.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/02 - test 2.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/03 - test 3.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/04 - test 4.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/05 - test 5.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/06 - test 6.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/07 - test 7.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/08 - test 8.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/09 - test 9.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/10 - test 10.txt +1 -0
- package/config/medium/TrigonometrySimplification/output/11 - test 11.txt +1 -0
- package/package.json +1 -1
|
@@ -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 @@
|
|
|
1
|
+
403 Forbidden
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1 D
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
403 Forbidden
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
403 Forbidden
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
403 Forbidden
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
400 2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
403 Forbidden
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
403 Forbidden
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
403 Forbidden
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
403 Forbidden
|
|
@@ -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,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,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
|