@cyrilverloop/codingame-configuration 1.22.0 → 1.24.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 +23 -0
- package/LICENSE +1 -1
- 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/SimpleDiffTool/code/CGCode.cpp +29 -0
- package/config/easy/SimpleDiffTool/code/CGCode.java +30 -0
- package/config/easy/SimpleDiffTool/code/CGCode.js +14 -0
- package/config/easy/SimpleDiffTool/code/CGCode.php +17 -0
- package/config/easy/SimpleDiffTool/code/CGCode.ts +14 -0
- package/config/easy/SimpleDiffTool/config.json +78 -0
- package/config/easy/SimpleDiffTool/input/01 - Test - Add by content.txt +10 -0
- package/config/easy/SimpleDiffTool/input/02 - Test - Add by number.txt +10 -0
- package/config/easy/SimpleDiffTool/input/03 - Test - Delete by content.txt +8 -0
- package/config/easy/SimpleDiffTool/input/04 - Test - Delete by number.txt +8 -0
- package/config/easy/SimpleDiffTool/input/05 - Test - Change by content.txt +9 -0
- package/config/easy/SimpleDiffTool/input/06 - Test - Change by number.txt +9 -0
- package/config/easy/SimpleDiffTool/input/07 - Test - No diffs by content.txt +9 -0
- package/config/easy/SimpleDiffTool/input/08 - Test - No diffs by number.txt +9 -0
- package/config/easy/SimpleDiffTool/input/09 - Test - Moved lines by content.txt +9 -0
- package/config/easy/SimpleDiffTool/input/10 - Test - Moved lines by number.txt +9 -0
- package/config/easy/SimpleDiffTool/input/11 - Test - Multiple diffs by content.txt +24 -0
- package/config/easy/SimpleDiffTool/input/12 - Test - Multiple diffs by number.txt +24 -0
- package/config/easy/SimpleDiffTool/input/13 - Test - No lines by content.txt +3 -0
- package/config/easy/SimpleDiffTool/input/14 - Test - No lines by number.txt +3 -0
- package/config/easy/SimpleDiffTool/output/01 - Test - Add by content.txt +1 -0
- package/config/easy/SimpleDiffTool/output/02 - Test - Add by number.txt +2 -0
- package/config/easy/SimpleDiffTool/output/03 - Test - Delete by content.txt +1 -0
- package/config/easy/SimpleDiffTool/output/04 - Test - Delete by number.txt +2 -0
- package/config/easy/SimpleDiffTool/output/05 - Test - Change by content.txt +2 -0
- package/config/easy/SimpleDiffTool/output/06 - Test - Change by number.txt +1 -0
- package/config/easy/SimpleDiffTool/output/07 - Test - No diffs by content.txt +1 -0
- package/config/easy/SimpleDiffTool/output/08 - Test - No diffs by number.txt +1 -0
- package/config/easy/SimpleDiffTool/output/09 - Test - Moved lines by content.txt +3 -0
- package/config/easy/SimpleDiffTool/output/10 - Test - Moved lines by number.txt +3 -0
- package/config/easy/SimpleDiffTool/output/11 - Test - Multiple diffs by content.txt +9 -0
- package/config/easy/SimpleDiffTool/output/12 - Test - Multiple diffs by number.txt +5 -0
- package/config/easy/SimpleDiffTool/output/13 - Test - No lines by content.txt +1 -0
- package/config/easy/SimpleDiffTool/output/14 - Test - No lines by number.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/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/{medium → hard}/GuessingDigits/config.json +1 -1
- package/config/hard/MountainRange/code/CGCode.cpp +22 -0
- package/config/hard/MountainRange/code/CGCode.java +23 -0
- package/config/hard/MountainRange/code/CGCode.js +11 -0
- package/config/hard/MountainRange/code/CGCode.php +11 -0
- package/config/hard/MountainRange/code/CGCode.ts +11 -0
- package/config/hard/MountainRange/config.json +123 -0
- package/config/hard/MountainRange/input/01 - Two summits.txt +7 -0
- package/config/hard/MountainRange/input/02 - Close summits.txt +7 -0
- package/config/hard/MountainRange/input/03 - Row of 11 peaks.txt +3 -0
- package/config/hard/MountainRange/input/04 - Two ridges.txt +13 -0
- package/config/hard/MountainRange/input/05 - Flat summits.txt +8 -0
- package/config/hard/MountainRange/input/06 - Aligned mountains.txt +16 -0
- package/config/hard/MountainRange/input/07 - Aligned valleys.txt +19 -0
- package/config/hard/MountainRange/input/08 - Intersecting ridges.txt +9 -0
- package/config/hard/MountainRange/input/09 - Nested mountains.txt +11 -0
- package/config/hard/MountainRange/input/10 - 8 + 8 + 6 + 6.txt +9 -0
- package/config/hard/MountainRange/input/11 - Partially hidden summit.txt +6 -0
- package/config/hard/MountainRange/input/12 - Test case of User123.txt +11 -0
- package/config/hard/MountainRange/input/13 - Two in front of three.txt +8 -0
- package/config/hard/MountainRange/input/14 - Two in front of one big mountain.txt +11 -0
- package/config/hard/MountainRange/input/15 - Four in front of one flat summit.txt +8 -0
- package/config/hard/MountainRange/input/16 - 8 pointed summits + 1 flat.txt +12 -0
- package/config/hard/MountainRange/input/17 - 2 + 3 + 2 + 3 + 2 + 2 + 2 + 2.txt +25 -0
- package/config/hard/MountainRange/input/18 - One in front of three.txt +12 -0
- package/config/hard/MountainRange/input/19 - Peak, flat summit, hidden slope.txt +9 -0
- package/config/hard/MountainRange/input/20 - Three summits, one hidden slope.txt +14 -0
- package/config/hard/MountainRange/input/21 - Two pairs.txt +8 -0
- package/config/hard/MountainRange/input/22 - 4 + 3 + 4 + 3 + 1 + 1.txt +14 -0
- package/config/hard/MountainRange/input/23 - 4 + 3 + 2 + 3 + 1 + 3 + 1 + 1.txt +14 -0
- package/config/hard/MountainRange/output/03 - Row of 11 peaks.txt +1 -0
- package/config/hard/MountainRange/output/04 - Two ridges.txt +1 -0
- package/config/hard/MountainRange/output/07 - Aligned valleys.txt +1 -0
- package/config/hard/MountainRange/output/08 - Intersecting ridges.txt +1 -0
- package/config/hard/MountainRange/output/09 - Nested mountains.txt +1 -0
- package/config/hard/MountainRange/output/10 - 8 + 8 + 6 + 6.txt +1 -0
- package/config/hard/MountainRange/output/11 - Partially hidden summit.txt +1 -0
- package/config/hard/MountainRange/output/12 - Test case of User123.txt +1 -0
- package/config/hard/MountainRange/output/13 - Two in front of three.txt +1 -0
- package/config/hard/MountainRange/output/14 - Two in front of one big mountain.txt +1 -0
- package/config/hard/MountainRange/output/15 - Four in front of one flat summit.txt +1 -0
- package/config/hard/MountainRange/output/16 - 8 pointed summits + 1 flat.txt +1 -0
- package/config/hard/MountainRange/output/17 - 2 + 3 + 2 + 3 + 2 + 2 + 2 + 2.txt +1 -0
- package/config/hard/MountainRange/output/19 - Peak, flat summit, hidden slope.txt +1 -0
- package/config/hard/MountainRange/output/20 - Three summits, one hidden slope.txt +1 -0
- package/config/hard/MountainRange/output/21 - Two pairs.txt +1 -0
- package/config/hard/MountainRange/output/22 - 4 + 3 + 4 + 3 + 1 + 1.txt +1 -0
- package/config/hard/MountainRange/output/23 - 4 + 3 + 2 + 3 + 1 + 3 + 1 + 1.txt +1 -0
- package/config/{medium → hard}/ParseSQLQueries/config.json +1 -1
- package/config/{expert → hard}/RecurringDecimals/config.json +1 -1
- package/config/{medium → hard}/Surakarta/config.json +1 -1
- package/config/hard/Surakarta/output/02 - multiple ways.txt +1 -0
- package/config/hard/Surakarta/output/04 - pass on yourself.txt +1 -0
- package/config/hard/Surakarta/output/05 - angles are not OK.txt +1 -0
- package/config/hard/Surakarta/output/07 - it works.txt +1 -0
- package/config/hard/Surakarta/output/10 - real test.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/code/CGCode.cpp +21 -0
- package/config/medium/DistinctCircularLinkedLists/code/CGCode.java +19 -0
- package/config/medium/DistinctCircularLinkedLists/code/CGCode.js +9 -0
- package/config/medium/DistinctCircularLinkedLists/code/CGCode.php +11 -0
- package/config/medium/DistinctCircularLinkedLists/code/CGCode.ts +9 -0
- package/config/medium/DistinctCircularLinkedLists/config.json +103 -0
- package/config/medium/DistinctCircularLinkedLists/input/01 - Example.txt +4 -0
- package/config/medium/DistinctCircularLinkedLists/input/02 - Random Nodes.txt +5 -0
- package/config/medium/DistinctCircularLinkedLists/input/03 - More Nodes.txt +8 -0
- package/config/medium/DistinctCircularLinkedLists/input/04 - Just One.txt +2 -0
- package/config/medium/DistinctCircularLinkedLists/input/05 - Even More Nodes.txt +10 -0
- package/config/medium/DistinctCircularLinkedLists/input/06 - Repeated Nodes.txt +6 -0
- package/config/medium/DistinctCircularLinkedLists/input/07 - Multiple Repeating Nodes.txt +9 -0
- package/config/medium/DistinctCircularLinkedLists/input/08 - Just One Again.txt +10 -0
- package/config/medium/DistinctCircularLinkedLists/input/09 - Good Pairing.txt +9 -0
- package/config/medium/DistinctCircularLinkedLists/input/10 - More Nodes 2.txt +13 -0
- package/config/medium/DistinctCircularLinkedLists/input/11 - Similar CLLs.txt +17 -0
- package/config/medium/DistinctCircularLinkedLists/input/12 - Even More Nodes 2.txt +31 -0
- package/config/medium/DistinctCircularLinkedLists/input/13 - Large CLLs.txt +61 -0
- package/config/medium/DistinctCircularLinkedLists/input/14 - Many Different Nodes.txt +101 -0
- package/config/medium/DistinctCircularLinkedLists/input/15 - Node Spam.txt +497 -0
- package/config/medium/DistinctCircularLinkedLists/input/16 - More Node Spam.txt +1000 -0
- package/config/medium/DistinctCircularLinkedLists/input/17 - Very Similar CLLs.txt +1985 -0
- package/config/medium/DistinctCircularLinkedLists/input/18 - Too Similar CLLs.txt +3361 -0
- package/config/medium/DistinctCircularLinkedLists/input/19 - Absolute Limit.txt +3997 -0
- package/config/medium/DistinctCircularLinkedLists/output/01 - Example.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/02 - Random Nodes.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/03 - More Nodes.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/04 - Just One.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/05 - Even More Nodes.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/06 - Repeated Nodes.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/07 - Multiple Repeating Nodes.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/08 - Just One Again.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/09 - Good Pairing.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/10 - More Nodes 2.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/11 - Similar CLLs.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/12 - Even More Nodes 2.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/13 - Large CLLs.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/14 - Many Different Nodes.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/15 - Node Spam.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/16 - More Node Spam.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/17 - Very Similar CLLs.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/18 - Too Similar CLLs.txt +1 -0
- package/config/medium/DistinctCircularLinkedLists/output/19 - Absolute Limit.txt +1 -0
- package/config/{easy → medium}/NoMorePythonsPlease/config.json +1 -1
- 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/SantasGarland/code/CGCode.cpp +27 -0
- package/config/medium/SantasGarland/code/CGCode.java +24 -0
- package/config/medium/SantasGarland/code/CGCode.js +17 -0
- package/config/medium/SantasGarland/code/CGCode.php +12 -0
- package/config/medium/SantasGarland/code/CGCode.ts +17 -0
- package/config/medium/SantasGarland/config.json +68 -0
- package/config/medium/SantasGarland/input/01 - Simple Path.txt +4 -0
- package/config/medium/SantasGarland/input/02 - Disconnected.txt +4 -0
- package/config/medium/SantasGarland/input/03 - Triangle with Alternative Path.txt +6 -0
- package/config/medium/SantasGarland/input/04 - Hexagon Bad Diagonal.txt +9 -0
- package/config/medium/SantasGarland/input/05 - Mid-failure with Bypass.txt +11 -0
- package/config/medium/SantasGarland/input/06 - Hub Blocked (different path lengths).txt +11 -0
- package/config/medium/SantasGarland/input/07 - Shortcut vs Two Detours.txt +12 -0
- package/config/medium/SantasGarland/input/08 - Grid Traversal.txt +14 -0
- package/config/medium/SantasGarland/input/09 - Fuses Blow at Final Step.txt +6 -0
- package/config/medium/SantasGarland/input/10 - Circle Complete Graph.txt +82 -0
- package/config/medium/SantasGarland/input/11 - Hamiltonian 10x10 Grid.txt +102 -0
- package/config/medium/SantasGarland/input/12 - Triple Path Challenge.txt +102 -0
- package/config/medium/SantasGarland/output/01 - Simple Path.txt +1 -0
- package/config/medium/SantasGarland/output/02 - Disconnected.txt +1 -0
- package/config/medium/SantasGarland/output/03 - Triangle with Alternative Path.txt +1 -0
- package/config/medium/SantasGarland/output/04 - Hexagon Bad Diagonal.txt +1 -0
- package/config/medium/SantasGarland/output/05 - Mid-failure with Bypass.txt +1 -0
- package/config/medium/SantasGarland/output/06 - Hub Blocked (different path lengths).txt +1 -0
- package/config/medium/SantasGarland/output/07 - Shortcut vs Two Detours.txt +1 -0
- package/config/medium/SantasGarland/output/08 - Grid Traversal.txt +1 -0
- package/config/medium/SantasGarland/output/09 - Fuses Blow at Final Step.txt +1 -0
- package/config/medium/SantasGarland/output/10 - Circle Complete Graph.txt +1 -0
- package/config/medium/SantasGarland/output/11 - Hamiltonian 10x10 Grid.txt +1 -0
- package/config/medium/SantasGarland/output/12 - Triple Path Challenge.txt +1 -0
- package/config/{easy → medium}/TheAlienBusinessOfCows/config.json +1 -1
- package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.cpp +18 -0
- package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.java +17 -0
- package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.js +8 -0
- package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.php +7 -0
- package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.ts +8 -0
- package/config/medium/TheQueensTrekWythoffsGame/config.json +63 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/01 - empty piles.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/02 - 1 move - pile 1 empty.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/03 - 1 move - pile 2 empty.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/04 - 1 move - 2 piles.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/05 - Simple one.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/06 - First win - 1.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/07 - Second win - 1.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/08 - First win - 2.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/09 - Second win - 2.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/10 - First win - 3.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/input/11 - Second win - 3.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/01 - empty piles.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/02 - 1 move - pile 1 empty.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/03 - 1 move - pile 2 empty.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/04 - 1 move - 2 piles.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/05 - Simple one.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/06 - First win - 1.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/07 - Second win - 1.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/08 - First win - 2.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/09 - Second win - 2.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/10 - First win - 3.txt +1 -0
- package/config/medium/TheQueensTrekWythoffsGame/output/11 - Second win - 3.txt +1 -0
- package/package.json +1 -1
- /package/config/{medium → hard}/GuessingDigits/code/CGCode.js +0 -0
- /package/config/{medium → hard}/GuessingDigits/code/CGCode.php +0 -0
- /package/config/{medium → hard}/GuessingDigits/input/01 - test 1.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/input/02 - test 2.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/input/03 - test 3.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/input/04 - test 4.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/input/05 - test 5.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/input/06 - test 6.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/input/07 - test 7.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/input/08 - test 8.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/output/01 - test 1.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/output/02 - test 2.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/output/03 - test 3.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/output/04 - test 4.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/output/05 - test 5.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/output/06 - test 6.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/output/07 - test 7.txt +0 -0
- /package/config/{medium → hard}/GuessingDigits/output/08 - test 8.txt +0 -0
- /package/config/{medium/Surakarta/output/05 - angles are not OK.txt → hard/MountainRange/output/01 - Two summits.txt} +0 -0
- /package/config/{medium/Surakarta/output/02 - multiple ways.txt → hard/MountainRange/output/02 - Close summits.txt} +0 -0
- /package/config/{medium/Surakarta/output/07 - it works.txt → hard/MountainRange/output/05 - Flat summits.txt} +0 -0
- /package/config/{medium/Surakarta/output/10 - real test.txt → hard/MountainRange/output/06 - Aligned mountains.txt} +0 -0
- /package/config/{medium/Surakarta/output/04 - pass on yourself.txt → hard/MountainRange/output/18 - One in front of three.txt} +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/code/CGCode.js +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/code/CGCode.php +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/input/01 - select all.txt +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/input/02 - Select from where.txt +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/input/03 - Order by ascending.txt +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/input/04 - Order by descending.txt +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/input/05 - Slightly more advanced.txt +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/output/01 - select all.txt +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/output/02 - Select from where.txt +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/output/03 - Order by ascending.txt +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/output/04 - Order by descending.txt +0 -0
- /package/config/{medium → hard}/ParseSQLQueries/output/05 - Slightly more advanced.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/code/CGCode.cpp +0 -0
- /package/config/{expert → hard}/RecurringDecimals/code/CGCode.java +0 -0
- /package/config/{expert → hard}/RecurringDecimals/code/CGCode.js +0 -0
- /package/config/{expert → hard}/RecurringDecimals/code/CGCode.php +0 -0
- /package/config/{expert → hard}/RecurringDecimals/code/CGCode.ts +0 -0
- /package/config/{expert → hard}/RecurringDecimals/input/01 - Small Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/input/02 - Medium Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/input/03 - Large Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/input/04 - Small Non-Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/input/05 - Medium Non-Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/input/06 - Large Non Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/input/07 - Small Mixed.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/input/08 - Large Mixed.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/input/09 - Test 9.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/output/01 - Small Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/output/02 - Medium Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/output/03 - Large Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/output/04 - Small Non-Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/output/05 - Medium Non-Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/output/06 - Large Non Terminating.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/output/07 - Small Mixed.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/output/08 - Large Mixed.txt +0 -0
- /package/config/{expert → hard}/RecurringDecimals/output/09 - Test 9.txt +0 -0
- /package/config/{medium → hard}/Surakarta/code/CGCode.js +0 -0
- /package/config/{medium → hard}/Surakarta/code/CGCode.php +0 -0
- /package/config/{medium → hard}/Surakarta/input/01 - around the world.txt +0 -0
- /package/config/{medium → hard}/Surakarta/input/02 - multiple ways.txt +0 -0
- /package/config/{medium → hard}/Surakarta/input/03 - impossible.txt +0 -0
- /package/config/{medium → hard}/Surakarta/input/04 - pass on yourself.txt +0 -0
- /package/config/{medium → hard}/Surakarta/input/05 - angles are not OK.txt +0 -0
- /package/config/{medium → hard}/Surakarta/input/06 - we have a problem.txt +0 -0
- /package/config/{medium → hard}/Surakarta/input/07 - it works.txt +0 -0
- /package/config/{medium → hard}/Surakarta/input/08 - number test.txt +0 -0
- /package/config/{medium → hard}/Surakarta/input/09 - crossway.txt +0 -0
- /package/config/{medium → hard}/Surakarta/input/10 - real test.txt +0 -0
- /package/config/{medium → hard}/Surakarta/output/01 - around the world.txt +0 -0
- /package/config/{medium → hard}/Surakarta/output/03 - impossible.txt +0 -0
- /package/config/{medium → hard}/Surakarta/output/06 - we have a problem.txt +0 -0
- /package/config/{medium → hard}/Surakarta/output/08 - number test.txt +0 -0
- /package/config/{medium → hard}/Surakarta/output/09 - crossway.txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/code/CGCode.js +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/code/CGCode.php +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/input/01 - easy (one snake).txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/input/02 - medium 1 (3 snakes, one pattern).txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/input/03 - medium 2 (more than 1 large snake).txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/input/04 - hard (one VERY large snake).txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/input/05 - snake madness (for geeks).txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/output/01 - easy (one snake).txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/output/02 - medium 1 (3 snakes, one pattern).txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/output/03 - medium 2 (more than 1 large snake).txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/output/04 - hard (one VERY large snake).txt +0 -0
- /package/config/{easy → medium}/NoMorePythonsPlease/output/05 - snake madness (for geeks).txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/code/CGCode.js +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/code/CGCode.php +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/input/01 - United Steak of America.txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/input/02 - Free Tacow !.txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/input/03 - Is that a Mowse.txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/input/04 - Those missions are stupid.txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/input/05 - Union of Steak Amateurs.txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/output/01 - United Steak of America.txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/output/02 - Free Tacow !.txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/output/03 - Is that a Mowse.txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/output/04 - Those missions are stupid.txt +0 -0
- /package/config/{easy → medium}/TheAlienBusinessOfCows/output/05 - Union of Steak Amateurs.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DELETE: It supports a large set of programming languages.
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
CHANGE: It supports a large set of programming languages. ---> The progression path is divided in four parts: development speed, algorithms, optimisation and artificial intelligence.
|
|
2
|
+
DELETE: The progression path is divided in four parts: development speed, algorithms, optimisation and artificial intelligence.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CHANGE: It supports a large set of programming languages. ---> Some experience points are awarded on tasks achievement
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
No Diffs
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
No Diffs
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
MOVE: CodinGame is a fun website to learn programming skills. @:1 >>> @:2
|
|
2
|
+
MOVE: It supports a large set of programming languages. @:2 >>> @:3
|
|
3
|
+
MOVE: The progression path is divided in four parts: development speed, algorithms, optimisation and artificial intelligence. @:3 >>> @:1
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
CHANGE: CodinGame is a fun website to learn programming skills. ---> The progression path is divided in four parts: development speed, algorithms, optimisation and artificial intelligence.
|
|
2
|
+
CHANGE: It supports a large set of programming languages. ---> CodinGame is a fun website to learn programming skills.
|
|
3
|
+
CHANGE: The progression path is divided in four parts: development speed, algorithms, optimisation and artificial intelligence. ---> It supports a large set of programming languages.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
ADD: Each time a player reaches a new league he awards some experience points.
|
|
2
|
+
ADD: Participants play against each others in several matches.
|
|
3
|
+
ADD: The goal is to create a bot (an AI) capable of playing a game in the given environment.
|
|
4
|
+
DELETE: Participants play against themselves in matches of 2 to 4 players in an arena.
|
|
5
|
+
DELETE: The goal is not to output a solution but to create a bot (an AI) capable of playing a game in the given environment.
|
|
6
|
+
DELETE: When ranking up, you'll be promoted to new leagues: Bronze, Silver, Gold and finally Legend.
|
|
7
|
+
DELETE: You start in the Wood leagues with a simplified version of the game.
|
|
8
|
+
MOVE: Any player who ends up above the boss' score after their ranking battles are finished will be promoted to the league above. @:11 >>> @:10
|
|
9
|
+
MOVE: In each league but the last (Legend), there is a reference bot: the boss. @:10 >>> @:9
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
CHANGE: In each league but the last (Legend), there is a reference bot: the boss. ---> Any player who ends up above the boss' score after their ranking battles are finished will be promoted to the league above.
|
|
2
|
+
CHANGE: The game is divided into several leagues. ---> The game is divided into several leagues: Woods, Bronze, Silver, Gold and finally Legend
|
|
3
|
+
CHANGE: The goal is not to output a solution but to create a bot (an AI) capable of playing a game in the given environment. ---> The goal is to create a bot (an AI) capable of playing a game in the given environment.
|
|
4
|
+
CHANGE: When ranking up, you'll be promoted to new leagues: Bronze, Silver, Gold and finally Legend. ---> In each league but the last (Legend), there is a reference bot: the boss.
|
|
5
|
+
DELETE: Any player who ends up above the boss' score after their ranking battles are finished will be promoted to the league above.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
No Diffs
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
No Diffs
|
|
@@ -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
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
26
|
|
2
|
+
10D
|
|
3
|
+
QH
|
|
4
|
+
JD
|
|
5
|
+
6C
|
|
6
|
+
QD
|
|
7
|
+
4S
|
|
8
|
+
KC
|
|
9
|
+
10S
|
|
10
|
+
JC
|
|
11
|
+
QC
|
|
12
|
+
8C
|
|
13
|
+
5H
|
|
14
|
+
4H
|
|
15
|
+
4D
|
|
16
|
+
6H
|
|
17
|
+
10H
|
|
18
|
+
9H
|
|
19
|
+
AD
|
|
20
|
+
5D
|
|
21
|
+
10C
|
|
22
|
+
9S
|
|
23
|
+
AH
|
|
24
|
+
2H
|
|
25
|
+
KH
|
|
26
|
+
9D
|
|
27
|
+
5S
|
|
28
|
+
26
|
|
29
|
+
7S
|
|
30
|
+
5C
|
|
31
|
+
2C
|
|
32
|
+
KD
|
|
33
|
+
2S
|
|
34
|
+
6D
|
|
35
|
+
6S
|
|
36
|
+
3S
|
|
37
|
+
AS
|
|
38
|
+
3C
|
|
39
|
+
8D
|
|
40
|
+
3H
|
|
41
|
+
7D
|
|
42
|
+
2D
|
|
43
|
+
JH
|
|
44
|
+
4C
|
|
45
|
+
JS
|
|
46
|
+
7C
|
|
47
|
+
AC
|
|
48
|
+
7H
|
|
49
|
+
3D
|
|
50
|
+
QS
|
|
51
|
+
8H
|
|
52
|
+
9C
|
|
53
|
+
KS
|
|
54
|
+
8S
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
26
|
|
2
|
+
6H
|
|
3
|
+
5S
|
|
4
|
+
7H
|
|
5
|
+
10C
|
|
6
|
+
9D
|
|
7
|
+
KH
|
|
8
|
+
4C
|
|
9
|
+
AC
|
|
10
|
+
JH
|
|
11
|
+
2S
|
|
12
|
+
KC
|
|
13
|
+
2C
|
|
14
|
+
AS
|
|
15
|
+
9H
|
|
16
|
+
6S
|
|
17
|
+
6C
|
|
18
|
+
7S
|
|
19
|
+
8H
|
|
20
|
+
9S
|
|
21
|
+
AD
|
|
22
|
+
8D
|
|
23
|
+
8S
|
|
24
|
+
7C
|
|
25
|
+
5H
|
|
26
|
+
4H
|
|
27
|
+
3H
|
|
28
|
+
26
|
|
29
|
+
5D
|
|
30
|
+
QS
|
|
31
|
+
QC
|
|
32
|
+
7D
|
|
33
|
+
3D
|
|
34
|
+
3C
|
|
35
|
+
AH
|
|
36
|
+
4D
|
|
37
|
+
2H
|
|
38
|
+
9C
|
|
39
|
+
10H
|
|
40
|
+
5C
|
|
41
|
+
10D
|
|
42
|
+
KD
|
|
43
|
+
10S
|
|
44
|
+
JS
|
|
45
|
+
KS
|
|
46
|
+
QH
|
|
47
|
+
8C
|
|
48
|
+
JC
|
|
49
|
+
QD
|
|
50
|
+
6D
|
|
51
|
+
JD
|
|
52
|
+
3S
|
|
53
|
+
4S
|
|
54
|
+
2D
|