@cyrilverloop/codingame-configuration 1.17.0 → 1.18.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 +41 -0
- package/config/easy/CityLightsPart2/code/CGCode.cpp +27 -0
- package/config/easy/CityLightsPart2/code/CGCode.java +25 -0
- package/config/easy/CityLightsPart2/code/CGCode.js +12 -0
- package/config/easy/CityLightsPart2/code/CGCode.php +14 -0
- package/config/easy/CityLightsPart2/code/CGCode.ts +12 -0
- package/config/easy/CityLightsPart2/config.json +53 -0
- package/config/easy/CityLightsPart2/input/01 - Simple.txt +13 -0
- package/config/easy/CityLightsPart2/input/02 - Simple Again.txt +15 -0
- package/config/easy/CityLightsPart2/input/03 - More Towns.txt +27 -0
- package/config/easy/CityLightsPart2/input/04 - Rural.txt +33 -0
- package/config/easy/CityLightsPart2/input/05 - Urban.txt +43 -0
- package/config/easy/CityLightsPart2/input/06 - TOO MUCH LIGHT.txt +43 -0
- package/config/easy/CityLightsPart2/input/07 - im blind.txt +45 -0
- package/config/easy/CityLightsPart2/input/08 - pls stop wasting electricity.txt +39 -0
- package/config/easy/CityLightsPart2/input/09 - 2D again.txt +17 -0
- package/config/easy/CityLightsPart2/output/01 - Simple.txt +9 -0
- package/config/easy/CityLightsPart2/output/02 - Simple Again.txt +11 -0
- package/config/easy/CityLightsPart2/output/03 - More Towns.txt +23 -0
- package/config/easy/CityLightsPart2/output/04 - Rural.txt +29 -0
- package/config/easy/CityLightsPart2/output/05 - Urban.txt +39 -0
- package/config/easy/CityLightsPart2/output/06 - TOO MUCH LIGHT.txt +39 -0
- package/config/easy/CityLightsPart2/output/07 - im blind.txt +41 -0
- package/config/easy/CityLightsPart2/output/08 - pls stop wasting electricity.txt +35 -0
- package/config/easy/CityLightsPart2/output/09 - 2D again.txt +13 -0
- package/config/easy/ScaleableTicTacToe/code/CGCode.cpp +22 -0
- package/config/easy/ScaleableTicTacToe/code/CGCode.java +23 -0
- package/config/easy/ScaleableTicTacToe/code/CGCode.js +11 -0
- package/config/easy/ScaleableTicTacToe/code/CGCode.php +11 -0
- package/config/easy/ScaleableTicTacToe/code/CGCode.ts +11 -0
- package/config/easy/ScaleableTicTacToe/config.json +58 -0
- package/config/easy/ScaleableTicTacToe/input/01 - test 1.txt +4 -0
- package/config/easy/ScaleableTicTacToe/input/02 - test 2.txt +6 -0
- package/config/easy/ScaleableTicTacToe/input/03 - test 3.txt +7 -0
- package/config/easy/ScaleableTicTacToe/input/04 - test 4.txt +8 -0
- package/config/easy/ScaleableTicTacToe/input/05 - test 5.txt +5 -0
- package/config/easy/ScaleableTicTacToe/input/06 - test 6.txt +6 -0
- package/config/easy/ScaleableTicTacToe/input/07 - test 7.txt +7 -0
- package/config/easy/ScaleableTicTacToe/input/08 - test 8.txt +5 -0
- package/config/easy/ScaleableTicTacToe/input/09 - test 9.txt +13 -0
- package/config/easy/ScaleableTicTacToe/input/10 - test 10.txt +12 -0
- package/config/easy/ScaleableTicTacToe/output/01 - test 1.txt +4 -0
- package/config/easy/ScaleableTicTacToe/output/02 - test 2.txt +6 -0
- package/config/easy/ScaleableTicTacToe/output/03 - test 3.txt +7 -0
- package/config/easy/ScaleableTicTacToe/output/04 - test 4.txt +8 -0
- package/config/easy/ScaleableTicTacToe/output/05 - test 5.txt +5 -0
- package/config/easy/ScaleableTicTacToe/output/06 - test 6.txt +6 -0
- package/config/easy/ScaleableTicTacToe/output/07 - test 7.txt +7 -0
- package/config/easy/ScaleableTicTacToe/output/08 - test 8.txt +5 -0
- package/config/easy/ScaleableTicTacToe/output/09 - test 9.txt +13 -0
- package/config/easy/ScaleableTicTacToe/output/10 - test 10.txt +12 -0
- package/config/easy/TakuzuSolverEasyMode/code/CGCode.cpp +27 -0
- package/config/easy/TakuzuSolverEasyMode/code/CGCode.java +27 -0
- package/config/easy/TakuzuSolverEasyMode/code/CGCode.js +15 -0
- package/config/easy/TakuzuSolverEasyMode/code/CGCode.php +17 -0
- package/config/easy/TakuzuSolverEasyMode/code/CGCode.ts +15 -0
- package/config/easy/TakuzuSolverEasyMode/config.json +33 -0
- package/config/easy/TakuzuSolverEasyMode/input/01 - test 1.txt +7 -0
- package/config/easy/TakuzuSolverEasyMode/input/02 - test 2.txt +9 -0
- package/config/easy/TakuzuSolverEasyMode/input/03 - test 3.txt +11 -0
- package/config/easy/TakuzuSolverEasyMode/input/04 - test 4.txt +13 -0
- package/config/easy/TakuzuSolverEasyMode/input/05 - test 5.txt +15 -0
- package/config/easy/TakuzuSolverEasyMode/output/01 - test 1.txt +6 -0
- package/config/easy/TakuzuSolverEasyMode/output/02 - test 2.txt +8 -0
- package/config/easy/TakuzuSolverEasyMode/output/03 - test 3.txt +10 -0
- package/config/easy/TakuzuSolverEasyMode/output/04 - test 4.txt +12 -0
- package/config/easy/TakuzuSolverEasyMode/output/05 - test 5.txt +14 -0
- package/config/expert/AMillionDigitsOfPi/code/CGCode.cpp +19 -0
- package/config/expert/AMillionDigitsOfPi/code/CGCode.java +17 -0
- package/config/expert/AMillionDigitsOfPi/code/CGCode.js +7 -0
- package/config/expert/AMillionDigitsOfPi/code/CGCode.php +8 -0
- package/config/expert/AMillionDigitsOfPi/code/CGCode.ts +7 -0
- package/config/expert/AMillionDigitsOfPi/config.json +43 -0
- package/config/expert/AMillionDigitsOfPi/input/01 - test 1.txt +2 -0
- package/config/expert/AMillionDigitsOfPi/input/02 - test 2.txt +2 -0
- package/config/expert/AMillionDigitsOfPi/input/03 - test 3.txt +2 -0
- package/config/expert/AMillionDigitsOfPi/input/04 - test 4.txt +2 -0
- package/config/expert/AMillionDigitsOfPi/input/05 - test 5.txt +2 -0
- package/config/expert/AMillionDigitsOfPi/input/06 - test 6.txt +2 -0
- package/config/expert/AMillionDigitsOfPi/input/07 - test 7.txt +2 -0
- package/config/expert/AMillionDigitsOfPi/output/01 - test 1.txt +1 -0
- package/config/expert/AMillionDigitsOfPi/output/02 - test 2.txt +1 -0
- package/config/expert/AMillionDigitsOfPi/output/03 - test 3.txt +1 -0
- package/config/expert/AMillionDigitsOfPi/output/04 - test 4.txt +1 -0
- package/config/expert/AMillionDigitsOfPi/output/05 - test 5.txt +1 -0
- package/config/expert/AMillionDigitsOfPi/output/06 - test 6.txt +1 -0
- package/config/expert/AMillionDigitsOfPi/output/07 - test 7.txt +1 -0
- package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.cpp +29 -0
- package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.java +26 -0
- package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.js +18 -0
- package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.php +18 -0
- package/config/expert/BinaryNeuralNetworkPart2/code/CGCode.ts +18 -0
- package/config/expert/BinaryNeuralNetworkPart2/config.json +38 -0
- package/config/expert/BinaryNeuralNetworkPart2/input/01 - Average.txt +85 -0
- package/config/expert/BinaryNeuralNetworkPart2/input/02 - Reverse.txt +85 -0
- package/config/expert/BinaryNeuralNetworkPart2/input/03 - Last digit.txt +85 -0
- package/config/expert/BinaryNeuralNetworkPart2/input/04 - AndOr.txt +85 -0
- package/config/expert/BinaryNeuralNetworkPart2/input/05 - Always zero.txt +85 -0
- package/config/expert/BinaryNeuralNetworkPart2/input/06 - And Xor.txt +85 -0
- package/config/expert/BinaryNeuralNetworkPart2/output/01 - Average.txt +4 -0
- package/config/expert/BinaryNeuralNetworkPart2/output/02 - Reverse.txt +4 -0
- package/config/expert/BinaryNeuralNetworkPart2/output/03 - Last digit.txt +4 -0
- package/config/expert/BinaryNeuralNetworkPart2/output/04 - AndOr.txt +4 -0
- package/config/expert/BinaryNeuralNetworkPart2/output/05 - Always zero.txt +4 -0
- package/config/expert/BinaryNeuralNetworkPart2/output/06 - And Xor.txt +4 -0
- package/config/expert/ChemicalEquationBalancing/code/CGCode.cpp +17 -0
- package/config/expert/ChemicalEquationBalancing/code/CGCode.java +16 -0
- package/config/expert/ChemicalEquationBalancing/code/CGCode.js +6 -0
- package/config/expert/ChemicalEquationBalancing/code/CGCode.php +7 -0
- package/config/expert/ChemicalEquationBalancing/code/CGCode.ts +6 -0
- package/config/expert/ChemicalEquationBalancing/config.json +53 -0
- package/config/expert/ChemicalEquationBalancing/input/01 - Simple & Single Letter Elements.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/input/02 - Photosynthesis.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/input/03 - Multi-letter Elements.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/input/04 - Fire.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/input/05 - Uncommon Elements.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/input/06 - Chloroplatinic Acid.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/input/07 - Sulfuric Acid.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/input/08 - Not real chemistry.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/input/09 - Iron(III) fluoride.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/output/01 - Simple & Single Letter Elements.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/output/02 - Photosynthesis.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/output/03 - Multi-letter Elements.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/output/04 - Fire.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/output/05 - Uncommon Elements.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/output/06 - Chloroplatinic Acid.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/output/07 - Sulfuric Acid.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/output/08 - Not real chemistry.txt +1 -0
- package/config/expert/ChemicalEquationBalancing/output/09 - Iron(III) fluoride.txt +1 -0
- package/config/expert/CompletedMahjongHands/code/CGCode.cpp +17 -0
- package/config/expert/CompletedMahjongHands/code/CGCode.java +16 -0
- package/config/expert/CompletedMahjongHands/code/CGCode.js +6 -0
- package/config/expert/CompletedMahjongHands/code/CGCode.php +7 -0
- package/config/expert/CompletedMahjongHands/code/CGCode.ts +6 -0
- package/config/expert/CompletedMahjongHands/config.json +88 -0
- package/config/expert/CompletedMahjongHands/input/01 - Four triplets.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/02 - Wrong wait.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/03 - All sequences.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/04 - Wrong wind.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/05 - Seven pairs.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/06 - Kokushi musou, any wait.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/07 - Complex hand.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/08 - Complex wait.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/09 - No pair.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/10 - Wrong draw.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/11 - Right draw.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/12 - Trash.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/13 - Golden gate bridge.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/14 - Four overlapping runs.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/15 - Not seven pairs.txt +1 -0
- package/config/expert/CompletedMahjongHands/input/16 - Kokushi musou, missed wait.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/01 - Four triplets.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/02 - Wrong wait.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/03 - All sequences.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/04 - Wrong wind.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/05 - Seven pairs.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/06 - Kokushi musou, any wait.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/07 - Complex hand.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/08 - Complex wait.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/09 - No pair.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/10 - Wrong draw.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/11 - Right draw.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/12 - Trash.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/13 - Golden gate bridge.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/14 - Four overlapping runs.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/15 - Not seven pairs.txt +1 -0
- package/config/expert/CompletedMahjongHands/output/16 - Kokushi musou, missed wait.txt +1 -0
- package/config/expert/CrossTheLines/code/CGCode.cpp +24 -0
- package/config/expert/CrossTheLines/code/CGCode.java +22 -0
- package/config/expert/CrossTheLines/code/CGCode.js +13 -0
- package/config/expert/CrossTheLines/code/CGCode.php +11 -0
- package/config/expert/CrossTheLines/code/CGCode.ts +13 -0
- package/config/expert/CrossTheLines/config.json +83 -0
- package/config/expert/CrossTheLines/input/01 - One triangle.txt +4 -0
- package/config/expert/CrossTheLines/input/02 - 1 square.txt +5 -0
- package/config/expert/CrossTheLines/input/03 - Unconnected lines.txt +6 -0
- package/config/expert/CrossTheLines/input/04 - 1 square 1 triangle.txt +7 -0
- package/config/expert/CrossTheLines/input/05 - Unconnected lines 2.txt +9 -0
- package/config/expert/CrossTheLines/input/06 - It/342/200/231s a trap!.txt" +9 -0
- package/config/expert/CrossTheLines/input/07 - It is a non convex trap!.txt +9 -0
- package/config/expert/CrossTheLines/input/08 - It/342/200/231s a trap in a trap!.txt" +10 -0
- package/config/expert/CrossTheLines/input/09 - Touching triangles.txt +8 -0
- package/config/expert/CrossTheLines/input/10 - Touching squares.txt +10 -0
- package/config/expert/CrossTheLines/input/11 - Bigger case.txt +26 -0
- package/config/expert/CrossTheLines/input/12 - Triforce.txt +10 -0
- package/config/expert/CrossTheLines/input/13 - Quadforce.txt +13 -0
- package/config/expert/CrossTheLines/input/14 - Broken triforce.txt +10 -0
- package/config/expert/CrossTheLines/input/15 - Almost Destroyed Triforce.txt +10 -0
- package/config/expert/CrossTheLines/output/01 - One triangle.txt +1 -0
- package/config/expert/CrossTheLines/output/02 - 1 square.txt +1 -0
- package/config/expert/CrossTheLines/output/03 - Unconnected lines.txt +1 -0
- package/config/expert/CrossTheLines/output/04 - 1 square 1 triangle.txt +1 -0
- package/config/expert/CrossTheLines/output/05 - Unconnected lines 2.txt +1 -0
- package/config/expert/CrossTheLines/output/06 - It/342/200/231s a trap!.txt" +1 -0
- package/config/expert/CrossTheLines/output/07 - It is a non convex trap!.txt +1 -0
- package/config/expert/CrossTheLines/output/08 - It/342/200/231s a trap in a trap!.txt" +1 -0
- package/config/expert/CrossTheLines/output/09 - Touching triangles.txt +1 -0
- package/config/expert/CrossTheLines/output/10 - Touching squares.txt +1 -0
- package/config/expert/CrossTheLines/output/11 - Bigger case.txt +1 -0
- package/config/expert/CrossTheLines/output/12 - Triforce.txt +1 -0
- package/config/expert/CrossTheLines/output/13 - Quadforce.txt +1 -0
- package/config/expert/CrossTheLines/output/14 - Broken triforce.txt +1 -0
- package/config/expert/CrossTheLines/output/15 - Almost Destroyed Triforce.txt +1 -0
- package/config/expert/FillTheSquare/code/CGCode.cpp +23 -0
- package/config/expert/FillTheSquare/code/CGCode.java +24 -0
- package/config/expert/FillTheSquare/code/CGCode.js +11 -0
- package/config/expert/FillTheSquare/code/CGCode.php +14 -0
- package/config/expert/FillTheSquare/code/CGCode.ts +11 -0
- package/config/expert/FillTheSquare/config.json +28 -0
- package/config/expert/FillTheSquare/input/01 - 3x3.txt +4 -0
- package/config/expert/FillTheSquare/input/02 - 6x6.txt +7 -0
- package/config/expert/FillTheSquare/input/03 - 10x10.txt +11 -0
- package/config/expert/FillTheSquare/input/04 - CG.txt +16 -0
- package/config/expert/FillTheSquare/output/01 - 3x3.txt +3 -0
- package/config/expert/FillTheSquare/output/02 - 6x6.txt +6 -0
- package/config/expert/FillTheSquare/output/03 - 10x10.txt +10 -0
- package/config/expert/FillTheSquare/output/04 - CG.txt +15 -0
- package/config/expert/HighRiseBuildings/code/CGCode.cpp +39 -0
- package/config/expert/HighRiseBuildings/code/CGCode.java +33 -0
- package/config/expert/HighRiseBuildings/code/CGCode.js +23 -0
- package/config/expert/HighRiseBuildings/code/CGCode.php +30 -0
- package/config/expert/HighRiseBuildings/code/CGCode.ts +23 -0
- package/config/expert/HighRiseBuildings/config.json +28 -0
- package/config/expert/HighRiseBuildings/input/01 - test 1.txt +10 -0
- package/config/expert/HighRiseBuildings/input/02 - test 2.txt +11 -0
- package/config/expert/HighRiseBuildings/input/03 - test 3.txt +12 -0
- package/config/expert/HighRiseBuildings/input/04 - test 4.txt +13 -0
- package/config/expert/HighRiseBuildings/output/01 - test 1.txt +5 -0
- package/config/expert/HighRiseBuildings/output/02 - test 2.txt +6 -0
- package/config/expert/HighRiseBuildings/output/03 - test 3.txt +7 -0
- package/config/expert/HighRiseBuildings/output/04 - test 4.txt +8 -0
- package/config/expert/MathematicsForBigEars/code/CGCode.cpp +21 -0
- package/config/expert/MathematicsForBigEars/code/CGCode.java +22 -0
- package/config/expert/MathematicsForBigEars/code/CGCode.js +9 -0
- package/config/expert/MathematicsForBigEars/code/CGCode.php +11 -0
- package/config/expert/MathematicsForBigEars/code/CGCode.ts +9 -0
- package/config/expert/MathematicsForBigEars/config.json +73 -0
- package/config/expert/MathematicsForBigEars/input/01 - C3 Cyclic group with 3 elements.txt +2 -0
- package/config/expert/MathematicsForBigEars/input/02 - S3 Symmetric group on 3 elements.txt +3 -0
- package/config/expert/MathematicsForBigEars/input/03 - Klein group.txt +3 -0
- package/config/expert/MathematicsForBigEars/input/04 - D6 Dihedral group of the hexagon.txt +4 -0
- package/config/expert/MathematicsForBigEars/input/05 - H Group of quaternions.txt +3 -0
- package/config/expert/MathematicsForBigEars/input/06 - S5 Symmetric group on 5 elements.txt +3 -0
- package/config/expert/MathematicsForBigEars/input/07 - GL2(F3) Linear group of the 2/303/2272 matrices over the finite field with 3 elements.txt" +3 -0
- package/config/expert/MathematicsForBigEars/input/08 - PGL2(F3) Quotient of GL2(F3) by its centre.txt +3 -0
- package/config/expert/MathematicsForBigEars/input/09 - PSL2(F7).txt +4 -0
- package/config/expert/MathematicsForBigEars/input/10 - S7 Symmetric group on 7 elements.txt +3 -0
- package/config/expert/MathematicsForBigEars/input/11 - Squares subgroup of the edges of the Rubik/342/200/231s cube.txt" +7 -0
- package/config/expert/MathematicsForBigEars/input/12 - M12 Mathieu group.txt +4 -0
- package/config/expert/MathematicsForBigEars/input/13 - S5/303/227S5/303/227S3.txt" +11 -0
- package/config/expert/MathematicsForBigEars/output/01 - C3 Cyclic group with 3 elements.txt +1 -0
- package/config/expert/MathematicsForBigEars/output/02 - S3 Symmetric group on 3 elements.txt +1 -0
- package/config/expert/MathematicsForBigEars/output/03 - Klein group.txt +1 -0
- package/config/expert/MathematicsForBigEars/output/04 - D6 Dihedral group of the hexagon.txt +1 -0
- package/config/expert/MathematicsForBigEars/output/05 - H Group of quaternions.txt +1 -0
- package/config/expert/MathematicsForBigEars/output/06 - S5 Symmetric group on 5 elements.txt +1 -0
- package/config/expert/MathematicsForBigEars/output/07 - GL2(F3) Linear group of the 2/303/2272 matrices over the finite field with 3 elements.txt" +1 -0
- package/config/expert/MathematicsForBigEars/output/08 - PGL2(F3) Quotient of GL2(F3) by its centre.txt +1 -0
- package/config/expert/MathematicsForBigEars/output/09 - PSL2(F7).txt +1 -0
- package/config/expert/MathematicsForBigEars/output/10 - S7 Symmetric group on 7 elements.txt +1 -0
- package/config/expert/MathematicsForBigEars/output/11 - Squares subgroup of the edges of the Rubik/342/200/231s cube.txt" +1 -0
- package/config/expert/MathematicsForBigEars/output/12 - M12 Mathieu group.txt +1 -0
- package/config/expert/MathematicsForBigEars/output/13 - S5/303/227S5/303/227S3.txt" +1 -0
- package/config/expert/MinimaxSimpleExample/code/CGCode.cpp +27 -0
- package/config/expert/MinimaxSimpleExample/code/CGCode.java +24 -0
- package/config/expert/MinimaxSimpleExample/code/CGCode.js +17 -0
- package/config/expert/MinimaxSimpleExample/code/CGCode.php +16 -0
- package/config/expert/MinimaxSimpleExample/code/CGCode.ts +17 -0
- package/config/expert/MinimaxSimpleExample/config.json +33 -0
- package/config/expert/MinimaxSimpleExample/input/01 - 4 turns.txt +6 -0
- package/config/expert/MinimaxSimpleExample/input/02 - 2 turns.txt +4 -0
- package/config/expert/MinimaxSimpleExample/input/03 - 8 turns.txt +13 -0
- package/config/expert/MinimaxSimpleExample/input/04 - 16 turns.txt +75 -0
- package/config/expert/MinimaxSimpleExample/input/05 - 24 turns - 100 words.txt +102 -0
- package/config/expert/MinimaxSimpleExample/output/01 - 4 turns.txt +1 -0
- package/config/expert/MinimaxSimpleExample/output/02 - 2 turns.txt +1 -0
- package/config/expert/MinimaxSimpleExample/output/03 - 8 turns.txt +1 -0
- package/config/expert/MinimaxSimpleExample/output/04 - 16 turns.txt +1 -0
- package/config/expert/MinimaxSimpleExample/output/05 - 24 turns - 100 words.txt +1 -0
- package/config/expert/NintendoSponsoredChallenge/config.json +1 -1
- package/config/expert/Nurikabe/code/CGCode.cpp +21 -0
- package/config/expert/Nurikabe/code/CGCode.java +22 -0
- package/config/expert/Nurikabe/code/CGCode.js +9 -0
- package/config/expert/Nurikabe/code/CGCode.php +11 -0
- package/config/expert/Nurikabe/code/CGCode.ts +9 -0
- package/config/expert/Nurikabe/config.json +63 -0
- package/config/expert/Nurikabe/input/01 - test 1.txt +6 -0
- package/config/expert/Nurikabe/input/02 - test 2.txt +6 -0
- package/config/expert/Nurikabe/input/03 - test 3.txt +8 -0
- package/config/expert/Nurikabe/input/04 - test 4.txt +8 -0
- package/config/expert/Nurikabe/input/05 - test 5.txt +11 -0
- package/config/expert/Nurikabe/input/06 - test 6.txt +11 -0
- package/config/expert/Nurikabe/input/07 - test 7.txt +13 -0
- package/config/expert/Nurikabe/input/08 - test 8.txt +13 -0
- package/config/expert/Nurikabe/input/09 - test 9.txt +16 -0
- package/config/expert/Nurikabe/input/10 - test 10.txt +16 -0
- package/config/expert/Nurikabe/input/11 - test 11.txt +21 -0
- package/config/expert/Nurikabe/output/01 - test 1.txt +5 -0
- package/config/expert/Nurikabe/output/02 - test 2.txt +5 -0
- package/config/expert/Nurikabe/output/03 - test 3.txt +7 -0
- package/config/expert/Nurikabe/output/04 - test 4.txt +7 -0
- package/config/expert/Nurikabe/output/05 - test 5.txt +10 -0
- package/config/expert/Nurikabe/output/06 - test 6.txt +10 -0
- package/config/expert/Nurikabe/output/07 - test 7.txt +12 -0
- package/config/expert/Nurikabe/output/08 - test 8.txt +12 -0
- package/config/expert/Nurikabe/output/09 - test 9.txt +15 -0
- package/config/expert/Nurikabe/output/10 - test 10.txt +15 -0
- package/config/expert/Nurikabe/output/11 - test 11.txt +20 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.cpp +25 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.java +23 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.js +14 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.php +14 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/code/CGCode.ts +14 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/config.json +48 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/input/01 - Basic.txt +12 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/input/02 - R = C (easy).txt +101 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/input/03 - R = C (medium).txt +101 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/input/04 - R = C (hard).txt +101 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/input/05 - R != C (easy).txt +21 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/input/06 - R != C (medium).txt +101 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/input/07 - R != C (hard).txt +101 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/input/08 - Mixed.txt +101 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/output/01 - Basic.txt +11 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/output/02 - R = C (easy).txt +100 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/output/03 - R = C (medium).txt +100 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/output/04 - R = C (hard).txt +100 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/output/05 - R != C (easy).txt +20 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/output/06 - R != C (medium).txt +100 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/output/07 - R != C (hard).txt +100 -0
- package/config/expert/PrimeFractalsinPascalsTriangle/output/08 - Mixed.txt +100 -0
- package/config/expert/PrimeTransformations/code/CGCode.cpp +24 -0
- package/config/expert/PrimeTransformations/code/CGCode.java +21 -0
- package/config/expert/PrimeTransformations/code/CGCode.js +12 -0
- package/config/expert/PrimeTransformations/code/CGCode.php +12 -0
- package/config/expert/PrimeTransformations/code/CGCode.ts +12 -0
- package/config/expert/PrimeTransformations/config.json +28 -0
- package/config/expert/PrimeTransformations/input/01 - Forward Power.txt +3 -0
- package/config/expert/PrimeTransformations/input/02 - Backward Power.txt +3 -0
- package/config/expert/PrimeTransformations/input/03 - Factor Deduction.txt +5 -0
- package/config/expert/PrimeTransformations/input/04 - Index Deduction.txt +3 -0
- package/config/expert/PrimeTransformations/output/01 - Forward Power.txt +1 -0
- package/config/expert/PrimeTransformations/output/02 - Backward Power.txt +1 -0
- package/config/expert/PrimeTransformations/output/03 - Factor Deduction.txt +1 -0
- package/config/expert/PrimeTransformations/output/04 - Index Deduction.txt +1 -0
- package/config/expert/RecurringDecimals/code/CGCode.cpp +17 -0
- package/config/expert/RecurringDecimals/code/CGCode.java +16 -0
- package/config/expert/RecurringDecimals/code/CGCode.js +6 -0
- package/config/expert/RecurringDecimals/code/CGCode.php +7 -0
- package/config/expert/RecurringDecimals/code/CGCode.ts +6 -0
- package/config/expert/RecurringDecimals/config.json +53 -0
- package/config/expert/RecurringDecimals/input/01 - Small Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/input/02 - Medium Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/input/03 - Large Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/input/04 - Small Non-Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/input/05 - Medium Non-Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/input/06 - Large Non Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/input/07 - Small Mixed.txt +1 -0
- package/config/expert/RecurringDecimals/input/08 - Large Mixed.txt +1 -0
- package/config/expert/RecurringDecimals/input/09 - Test 9.txt +1 -0
- package/config/expert/RecurringDecimals/output/01 - Small Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/output/02 - Medium Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/output/03 - Large Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/output/04 - Small Non-Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/output/05 - Medium Non-Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/output/06 - Large Non Terminating.txt +1 -0
- package/config/expert/RecurringDecimals/output/07 - Small Mixed.txt +1 -0
- package/config/expert/RecurringDecimals/output/08 - Large Mixed.txt +1 -0
- package/config/expert/RecurringDecimals/output/09 - Test 9.txt +1 -0
- package/config/expert/RunningUpThatHill/code/CGCode.cpp +24 -0
- package/config/expert/RunningUpThatHill/code/CGCode.java +20 -0
- package/config/expert/RunningUpThatHill/code/CGCode.js +10 -0
- package/config/expert/RunningUpThatHill/code/CGCode.php +11 -0
- package/config/expert/RunningUpThatHill/code/CGCode.ts +10 -0
- package/config/expert/RunningUpThatHill/config.json +78 -0
- package/config/expert/RunningUpThatHill/input/01 - Example: 2/303/2272.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/02 - 2/303/2272.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/03 - Another 2/303/2272.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/04 - 3/303/2273.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/05 - Another 3/303/2273.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/06 - 3/303/2273 permutation.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/07 - 4/303/2274.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/08 - Another 4/303/2274.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/09 - 5/303/2275.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/10 - Another 5/303/2275.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/11 - 5/303/2275 permutation.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/12 - 6/303/2276.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/13 - Another 6/303/2276.txt" +4 -0
- package/config/expert/RunningUpThatHill/input/14 - Mind the repetition.txt +4 -0
- package/config/expert/RunningUpThatHill/output/01 - Example: 2/303/2272.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/02 - 2/303/2272.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/03 - Another 2/303/2272.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/04 - 3/303/2273.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/05 - Another 3/303/2273.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/06 - 3/303/2273 permutation.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/07 - 4/303/2274.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/08 - Another 4/303/2274.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/09 - 5/303/2275.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/10 - Another 5/303/2275.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/11 - 5/303/2275 permutation.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/12 - 6/303/2276.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/13 - Another 6/303/2276.txt" +2 -0
- package/config/expert/RunningUpThatHill/output/14 - Mind the repetition.txt +2 -0
- package/config/expert/Skylines/code/CGCode.cpp +23 -0
- package/config/expert/Skylines/code/CGCode.java +21 -0
- package/config/expert/Skylines/code/CGCode.js +12 -0
- package/config/expert/Skylines/code/CGCode.php +11 -0
- package/config/expert/Skylines/code/CGCode.ts +12 -0
- package/config/expert/Skylines/config.json +63 -0
- package/config/expert/Skylines/input/01 - Single building.txt +2 -0
- package/config/expert/Skylines/input/02 - 2 separate buildings.txt +3 -0
- package/config/expert/Skylines/input/03 - 2 adjacent buildings.txt +3 -0
- package/config/expert/Skylines/input/04 - 2 overlapping buildings.txt +3 -0
- package/config/expert/Skylines/input/05 - 3 connected buildings.txt +4 -0
- package/config/expert/Skylines/input/06 - Lots of overlap.txt +11 -0
- package/config/expert/Skylines/input/07 - Separation.txt +11 -0
- package/config/expert/Skylines/input/08 - Big city.txt +26 -0
- package/config/expert/Skylines/input/09 - Bigger city.txt +51 -0
- package/config/expert/Skylines/input/10 - Metropolis.txt +101 -0
- package/config/expert/Skylines/input/11 - Almost adjacent.txt +3 -0
- package/config/expert/Skylines/output/01 - Single building.txt +1 -0
- package/config/expert/Skylines/output/02 - 2 separate buildings.txt +1 -0
- package/config/expert/Skylines/output/03 - 2 adjacent buildings.txt +1 -0
- package/config/expert/Skylines/output/04 - 2 overlapping buildings.txt +1 -0
- package/config/expert/Skylines/output/05 - 3 connected buildings.txt +1 -0
- package/config/expert/Skylines/output/06 - Lots of overlap.txt +1 -0
- package/config/expert/Skylines/output/07 - Separation.txt +1 -0
- package/config/expert/Skylines/output/08 - Big city.txt +1 -0
- package/config/expert/Skylines/output/09 - Bigger city.txt +1 -0
- package/config/expert/Skylines/output/10 - Metropolis.txt +1 -0
- package/config/expert/Skylines/output/11 - Almost adjacent.txt +1 -0
- package/config/expert/SlidingPuzzle/code/CGCode.cpp +22 -0
- package/config/expert/SlidingPuzzle/code/CGCode.java +23 -0
- package/config/expert/SlidingPuzzle/code/CGCode.js +11 -0
- package/config/expert/SlidingPuzzle/code/CGCode.php +11 -0
- package/config/expert/SlidingPuzzle/code/CGCode.ts +11 -0
- package/config/expert/SlidingPuzzle/config.json +28 -0
- package/config/expert/SlidingPuzzle/input/01 - 2x2.txt +3 -0
- package/config/expert/SlidingPuzzle/input/02 - 3x3.txt +4 -0
- package/config/expert/SlidingPuzzle/input/03 - 10x1.txt +11 -0
- package/config/expert/SlidingPuzzle/input/04 - 2x5.txt +3 -0
- package/config/expert/SlidingPuzzle/output/01 - 2x2.txt +1 -0
- package/config/expert/SlidingPuzzle/output/02 - 3x3.txt +1 -0
- package/config/expert/SlidingPuzzle/output/03 - 10x1.txt +1 -0
- package/config/expert/SlidingPuzzle/output/04 - 2x5.txt +1 -0
- package/config/expert/SpyTheSpies/code/CGCode.cpp +26 -0
- package/config/expert/SpyTheSpies/code/CGCode.java +27 -0
- package/config/expert/SpyTheSpies/code/CGCode.js +15 -0
- package/config/expert/SpyTheSpies/code/CGCode.php +11 -0
- package/config/expert/SpyTheSpies/code/CGCode.ts +15 -0
- package/config/expert/SpyTheSpies/config.json +33 -0
- package/config/expert/SpyTheSpies/input/01 - All in common.txt +16 -0
- package/config/expert/SpyTheSpies/input/02 - Common differentiator.txt +16 -0
- package/config/expert/SpyTheSpies/input/03 - Extra attributes.txt +16 -0
- package/config/expert/SpyTheSpies/input/04 - Extra steps.txt +16 -0
- package/config/expert/SpyTheSpies/input/05 - Very entangled.txt +16 -0
- package/config/expert/SpyTheSpies/output/01 - All in common.txt +1 -0
- package/config/expert/SpyTheSpies/output/02 - Common differentiator.txt +1 -0
- package/config/expert/SpyTheSpies/output/03 - Extra attributes.txt +1 -0
- package/config/expert/SpyTheSpies/output/04 - Extra steps.txt +3 -0
- package/config/expert/SpyTheSpies/output/05 - Very entangled.txt +11 -0
- package/config/expert/TheBarnyard/code/CGCode.cpp +26 -0
- package/config/expert/TheBarnyard/code/CGCode.java +23 -0
- package/config/expert/TheBarnyard/code/CGCode.js +15 -0
- package/config/expert/TheBarnyard/code/CGCode.php +16 -0
- package/config/expert/TheBarnyard/code/CGCode.ts +15 -0
- package/config/expert/TheBarnyard/config.json +28 -0
- package/config/expert/TheBarnyard/input/01 - Two animals.txt +4 -0
- package/config/expert/TheBarnyard/input/02 - Three animals.txt +5 -0
- package/config/expert/TheBarnyard/input/03 - Four animals.txt +6 -0
- package/config/expert/TheBarnyard/input/04 - Five animals.txt +7 -0
- package/config/expert/TheBarnyard/output/01 - Two animals.txt +2 -0
- package/config/expert/TheBarnyard/output/02 - Three animals.txt +3 -0
- package/config/expert/TheBarnyard/output/03 - Four animals.txt +4 -0
- package/config/expert/TheBarnyard/output/04 - Five animals.txt +5 -0
- package/config/expert/TheTwoPilesDifference/code/CGCode.cpp +21 -0
- package/config/expert/TheTwoPilesDifference/code/CGCode.java +19 -0
- package/config/expert/TheTwoPilesDifference/code/CGCode.js +10 -0
- package/config/expert/TheTwoPilesDifference/code/CGCode.php +12 -0
- package/config/expert/TheTwoPilesDifference/code/CGCode.ts +10 -0
- package/config/expert/TheTwoPilesDifference/config.json +33 -0
- package/config/expert/TheTwoPilesDifference/input/01 - Simple.txt +2 -0
- package/config/expert/TheTwoPilesDifference/input/02 - Normal.txt +2 -0
- package/config/expert/TheTwoPilesDifference/input/03 - Complex.txt +2 -0
- package/config/expert/TheTwoPilesDifference/input/04 - More values.txt +2 -0
- package/config/expert/TheTwoPilesDifference/input/05 - Big size.txt +2 -0
- package/config/expert/TheTwoPilesDifference/output/01 - Simple.txt +1 -0
- package/config/expert/TheTwoPilesDifference/output/02 - Normal.txt +1 -0
- package/config/expert/TheTwoPilesDifference/output/03 - Complex.txt +1 -0
- package/config/expert/TheTwoPilesDifference/output/04 - More values.txt +1 -0
- package/config/expert/TheTwoPilesDifference/output/05 - Big size.txt +1 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.cpp +23 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.java +20 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.js +10 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.php +12 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/code/CGCode.ts +10 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/config.json +28 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/input/01 - Example.txt +4 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/input/02 - 2 recipients.txt +4 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/input/03 - 3 recipients.txt +5 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/input/04 - 4 recipients.txt +6 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/output/01 - Example.txt +1 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/output/02 - 2 recipients.txt +1 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/output/03 - 3 recipients.txt +1 -0
- package/config/expert/TheWaterJugRiddleFromDieHard3/output/04 - 4 recipients.txt +1 -0
- package/config/expert/TilingBySquares/code/CGCode.cpp +18 -0
- package/config/expert/TilingBySquares/code/CGCode.java +17 -0
- package/config/expert/TilingBySquares/code/CGCode.js +8 -0
- package/config/expert/TilingBySquares/code/CGCode.php +7 -0
- package/config/expert/TilingBySquares/code/CGCode.ts +8 -0
- package/config/expert/TilingBySquares/config.json +43 -0
- package/config/expert/TilingBySquares/input/01 - test 1.txt +1 -0
- package/config/expert/TilingBySquares/input/02 - test 2.txt +1 -0
- package/config/expert/TilingBySquares/input/03 - test 3.txt +1 -0
- package/config/expert/TilingBySquares/input/04 - test 4.txt +1 -0
- package/config/expert/TilingBySquares/input/05 - test 5.txt +1 -0
- package/config/expert/TilingBySquares/input/06 - test 6.txt +1 -0
- package/config/expert/TilingBySquares/input/07 - test 7.txt +1 -0
- package/config/expert/TilingBySquares/output/01 - test 1.txt +1 -0
- package/config/expert/TilingBySquares/output/02 - test 2.txt +1 -0
- package/config/expert/TilingBySquares/output/03 - test 3.txt +1 -0
- package/config/expert/TilingBySquares/output/04 - test 4.txt +1 -0
- package/config/expert/TilingBySquares/output/05 - test 5.txt +1 -0
- package/config/expert/TilingBySquares/output/06 - test 6.txt +1 -0
- package/config/expert/TilingBySquares/output/07 - test 7.txt +1 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.cpp +19 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.java +18 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.js +8 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.php +10 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/code/CGCode.ts +8 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/config.json +33 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/input/01 - test 1.txt +25 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/input/02 - test 2.txt +25 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/input/03 - test 3.txt +25 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/input/04 - test 4.txt +25 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/input/05 - test 5.txt +25 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/output/01 - test 1.txt +25 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/output/02 - test 2.txt +25 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/output/03 - test 3.txt +25 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/output/04 - test 4.txt +25 -0
- package/config/expert/TwentyFIveXTwentyFIveSudoku/output/05 - test 5.txt +25 -0
- package/config/expert/UnfoldingPaper/code/CGCode.cpp +24 -0
- package/config/expert/UnfoldingPaper/code/CGCode.java +24 -0
- package/config/expert/UnfoldingPaper/code/CGCode.js +12 -0
- package/config/expert/UnfoldingPaper/code/CGCode.php +12 -0
- package/config/expert/UnfoldingPaper/code/CGCode.ts +12 -0
- package/config/expert/UnfoldingPaper/config.json +43 -0
- package/config/expert/UnfoldingPaper/input/01 - Example.txt +5 -0
- package/config/expert/UnfoldingPaper/input/02 - Multiple folds.txt +5 -0
- package/config/expert/UnfoldingPaper/input/03 - Big sheet.txt +13 -0
- package/config/expert/UnfoldingPaper/input/04 - Long unfolding.txt +5 -0
- package/config/expert/UnfoldingPaper/input/05 - Many pieces.txt +7 -0
- package/config/expert/UnfoldingPaper/input/06 - Random.txt +6 -0
- package/config/expert/UnfoldingPaper/input/07 - Chess board.txt +14 -0
- package/config/expert/UnfoldingPaper/output/01 - Example.txt +1 -0
- package/config/expert/UnfoldingPaper/output/02 - Multiple folds.txt +1 -0
- package/config/expert/UnfoldingPaper/output/03 - Big sheet.txt +1 -0
- package/config/expert/UnfoldingPaper/output/04 - Long unfolding.txt +1 -0
- package/config/expert/UnfoldingPaper/output/05 - Many pieces.txt +1 -0
- package/config/expert/UnfoldingPaper/output/06 - Random.txt +1 -0
- package/config/expert/UnfoldingPaper/output/07 - Chess board.txt +1 -0
- package/config/expert/WhenPigsFly/code/CGCode.cpp +21 -0
- package/config/expert/WhenPigsFly/code/CGCode.java +22 -0
- package/config/expert/WhenPigsFly/code/CGCode.js +9 -0
- package/config/expert/WhenPigsFly/code/CGCode.php +11 -0
- package/config/expert/WhenPigsFly/code/CGCode.ts +9 -0
- package/config/expert/WhenPigsFly/config.json +53 -0
- package/config/expert/WhenPigsFly/input/01 - Object classes.txt +4 -0
- package/config/expert/WhenPigsFly/input/02 - Traits and Abilities.txt +5 -0
- package/config/expert/WhenPigsFly/input/03 - Some but not all.txt +8 -0
- package/config/expert/WhenPigsFly/input/04 - Branching inheritance.txt +9 -0
- package/config/expert/WhenPigsFly/input/05 - Roundabout.txt +10 -0
- package/config/expert/WhenPigsFly/input/06 - Doubles.txt +5 -0
- package/config/expert/WhenPigsFly/input/07 - Big Loop.txt +10 -0
- package/config/expert/WhenPigsFly/input/08 - Unrelated.txt +12 -0
- package/config/expert/WhenPigsFly/input/09 - Final Test.txt +10 -0
- package/config/expert/WhenPigsFly/output/01 - Object classes.txt +1 -0
- package/config/expert/WhenPigsFly/output/02 - Traits and Abilities.txt +1 -0
- package/config/expert/WhenPigsFly/output/03 - Some but not all.txt +1 -0
- package/config/expert/WhenPigsFly/output/04 - Branching inheritance.txt +1 -0
- package/config/expert/WhenPigsFly/output/05 - Roundabout.txt +1 -0
- package/config/expert/WhenPigsFly/output/06 - Doubles.txt +1 -0
- package/config/expert/WhenPigsFly/output/07 - Big Loop.txt +1 -0
- package/config/expert/WhenPigsFly/output/08 - Unrelated.txt +1 -0
- package/config/expert/WhenPigsFly/output/09 - Final Test.txt +1 -0
- package/config/expert/Xorandor/code/CGCode.cpp +22 -0
- package/config/expert/Xorandor/code/CGCode.java +23 -0
- package/config/expert/Xorandor/code/CGCode.js +11 -0
- package/config/expert/Xorandor/code/CGCode.php +11 -0
- package/config/expert/Xorandor/code/CGCode.ts +11 -0
- package/config/expert/Xorandor/config.json +38 -0
- package/config/expert/Xorandor/input/01 - Example OrAnd.txt +10 -0
- package/config/expert/Xorandor/input/02 - Not.txt +12 -0
- package/config/expert/Xorandor/input/03 - Fork.txt +20 -0
- package/config/expert/Xorandor/input/04 - Switch.txt +16 -0
- package/config/expert/Xorandor/input/05 - Xnornandnor.txt +31 -0
- package/config/expert/Xorandor/input/06 - Big one.txt +37 -0
- package/config/expert/Xorandor/output/01 - Example OrAnd.txt +2 -0
- package/config/expert/Xorandor/output/02 - Not.txt +2 -0
- package/config/expert/Xorandor/output/03 - Fork.txt +3 -0
- package/config/expert/Xorandor/output/04 - Switch.txt +5 -0
- package/config/expert/Xorandor/output/05 - Xnornandnor.txt +6 -0
- package/config/expert/Xorandor/output/06 - Big one.txt +7 -0
- package/config/hard/CGChatInterpreter/config.json +1 -1
- package/config/hard/PandorasBridges/code/CGCode.cpp +23 -0
- package/config/hard/PandorasBridges/code/CGCode.java +21 -0
- package/config/hard/PandorasBridges/code/CGCode.js +12 -0
- package/config/hard/PandorasBridges/code/CGCode.php +11 -0
- package/config/hard/PandorasBridges/code/CGCode.ts +12 -0
- package/config/hard/PandorasBridges/config.json +43 -0
- package/config/hard/PandorasBridges/input/01 - Small Islands.txt +11 -0
- package/config/hard/PandorasBridges/input/02 - Distance Checker.txt +5 -0
- package/config/hard/PandorasBridges/input/03 - Angle Checker.txt +6 -0
- package/config/hard/PandorasBridges/input/04 - Vertical and Horizontal.txt +6 -0
- package/config/hard/PandorasBridges/input/05 - Medium Islands.txt +28 -0
- package/config/hard/PandorasBridges/input/06 - Lots of Islands.txt +101 -0
- package/config/hard/PandorasBridges/input/07 - Lots Lots of Islands.txt +204 -0
- package/config/hard/PandorasBridges/output/01 - Small Islands.txt +2 -0
- package/config/hard/PandorasBridges/output/02 - Distance Checker.txt +2 -0
- package/config/hard/PandorasBridges/output/03 - Angle Checker.txt +2 -0
- package/config/hard/PandorasBridges/output/04 - Vertical and Horizontal.txt +2 -0
- package/config/hard/PandorasBridges/output/05 - Medium Islands.txt +2 -0
- package/config/hard/PandorasBridges/output/06 - Lots of Islands.txt +2 -0
- package/config/hard/PandorasBridges/output/07 - Lots Lots of Islands.txt +2 -0
- package/config/medium/MirrorRotation/code/CGCode.cpp +24 -0
- package/config/medium/MirrorRotation/code/CGCode.java +24 -0
- package/config/medium/MirrorRotation/code/CGCode.js +12 -0
- package/config/medium/MirrorRotation/code/CGCode.php +12 -0
- package/config/medium/MirrorRotation/code/CGCode.ts +12 -0
- package/config/medium/MirrorRotation/config.json +38 -0
- package/config/medium/MirrorRotation/input/01 - 1 Flip.txt +6 -0
- package/config/medium/MirrorRotation/input/02 - Multiple.txt +7 -0
- package/config/medium/MirrorRotation/input/03 - Shortest Path.txt +8 -0
- package/config/medium/MirrorRotation/input/04 - Swirl.txt +11 -0
- package/config/medium/MirrorRotation/input/05 - Loop.txt +7 -0
- package/config/medium/MirrorRotation/input/06 - Confusing.txt +12 -0
- package/config/medium/MirrorRotation/output/01 - 1 Flip.txt +1 -0
- package/config/medium/MirrorRotation/output/02 - Multiple.txt +2 -0
- package/config/medium/MirrorRotation/output/03 - Shortest Path.txt +1 -0
- package/config/medium/MirrorRotation/output/04 - Swirl.txt +6 -0
- package/config/medium/MirrorRotation/output/05 - Loop.txt +3 -0
- package/config/medium/MirrorRotation/output/06 - Confusing.txt +3 -0
- package/config/medium/SnakesAndLadders/code/CGCode.cpp +33 -0
- package/config/medium/SnakesAndLadders/code/CGCode.java +28 -0
- package/config/medium/SnakesAndLadders/code/CGCode.js +22 -0
- package/config/medium/SnakesAndLadders/code/CGCode.php +17 -0
- package/config/medium/SnakesAndLadders/code/CGCode.ts +22 -0
- package/config/medium/SnakesAndLadders/config.json +133 -0
- package/config/medium/SnakesAndLadders/input/01 - Small Board.txt +9 -0
- package/config/medium/SnakesAndLadders/input/02 - Standard Board.txt +12 -0
- package/config/medium/SnakesAndLadders/input/03 - Large Board.txt +20 -0
- package/config/medium/SnakesAndLadders/input/04 - Small Bland Board.txt +5 -0
- package/config/medium/SnakesAndLadders/input/05 - Medium Bland Board.txt +6 -0
- package/config/medium/SnakesAndLadders/input/06 - Large Bland Board.txt +7 -0
- package/config/medium/SnakesAndLadders/input/07 - Small Board and Small Dice.txt +12 -0
- package/config/medium/SnakesAndLadders/input/08 - Small Board and Large Dice.txt +11 -0
- package/config/medium/SnakesAndLadders/input/09 - Large Board and Small Die.txt +16 -0
- package/config/medium/SnakesAndLadders/input/10 - Large Board and Large Die.txt +18 -0
- package/config/medium/SnakesAndLadders/input/11 - Small Non-Standard Board.txt +11 -0
- package/config/medium/SnakesAndLadders/input/12 - Medium Non-Standard Board.txt +18 -0
- package/config/medium/SnakesAndLadders/input/13 - Large Non-Standard Board.txt +30 -0
- package/config/medium/SnakesAndLadders/input/14 - Pocket Board.txt +5 -0
- package/config/medium/SnakesAndLadders/input/15 - No Ladders, Just Snakes.txt +12 -0
- package/config/medium/SnakesAndLadders/input/16 - No Snakes, Just Ladders.txt +16 -0
- package/config/medium/SnakesAndLadders/input/17 - Empty Board.txt +3 -0
- package/config/medium/SnakesAndLadders/input/18 - Empty Board 2.txt +3 -0
- package/config/medium/SnakesAndLadders/input/19 - No Chaining Detector.txt +9 -0
- package/config/medium/SnakesAndLadders/input/20 - Helpful Ladder.txt +27 -0
- package/config/medium/SnakesAndLadders/input/21 - Many Snakes and Ladders.txt +44 -0
- package/config/medium/SnakesAndLadders/input/22 - Many Snakes and Ladders 2.txt +77 -0
- package/config/medium/SnakesAndLadders/input/23 - Many Snakes and Ladders 3.txt +36 -0
- package/config/medium/SnakesAndLadders/input/24 - Useful Snake.txt +14 -0
- package/config/medium/SnakesAndLadders/input/25 - Useful Snakes.txt +24 -0
- package/config/medium/SnakesAndLadders/output/01 - Small Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/02 - Standard Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/03 - Large Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/04 - Small Bland Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/05 - Medium Bland Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/06 - Large Bland Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/07 - Small Board and Small Dice.txt +1 -0
- package/config/medium/SnakesAndLadders/output/08 - Small Board and Large Dice.txt +1 -0
- package/config/medium/SnakesAndLadders/output/09 - Large Board and Small Die.txt +1 -0
- package/config/medium/SnakesAndLadders/output/10 - Large Board and Large Die.txt +1 -0
- package/config/medium/SnakesAndLadders/output/11 - Small Non-Standard Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/12 - Medium Non-Standard Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/13 - Large Non-Standard Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/14 - Pocket Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/15 - No Ladders, Just Snakes.txt +1 -0
- package/config/medium/SnakesAndLadders/output/16 - No Snakes, Just Ladders.txt +1 -0
- package/config/medium/SnakesAndLadders/output/17 - Empty Board.txt +1 -0
- package/config/medium/SnakesAndLadders/output/18 - Empty Board 2.txt +1 -0
- package/config/medium/SnakesAndLadders/output/19 - No Chaining Detector.txt +1 -0
- package/config/medium/SnakesAndLadders/output/20 - Helpful Ladder.txt +1 -0
- package/config/medium/SnakesAndLadders/output/21 - Many Snakes and Ladders.txt +1 -0
- package/config/medium/SnakesAndLadders/output/22 - Many Snakes and Ladders 2.txt +1 -0
- package/config/medium/SnakesAndLadders/output/23 - Many Snakes and Ladders 3.txt +1 -0
- package/config/medium/SnakesAndLadders/output/24 - Useful Snake.txt +1 -0
- package/config/medium/SnakesAndLadders/output/25 - Useful Snakes.txt +1 -0
- package/package.json +1 -1
@@ -0,0 +1,75 @@
|
|
1
|
+
16 73
|
2
|
+
I T E C G F L R P A S M O D N H
|
3
|
+
HELIPORT 42
|
4
|
+
LEOPARDS 41
|
5
|
+
DECIGRAM 40
|
6
|
+
PLATFORM 40
|
7
|
+
HANDSOME 39
|
8
|
+
REACTION 38
|
9
|
+
ATHEISM 33
|
10
|
+
IRELAND 31
|
11
|
+
INSPECT 31
|
12
|
+
DIAMOND 30
|
13
|
+
PALMIER 30
|
14
|
+
PRIMATE 29
|
15
|
+
ARTICLE 28
|
16
|
+
MONSTER 27
|
17
|
+
FISHER 26
|
18
|
+
DOLMEN 26
|
19
|
+
PORTAL 25
|
20
|
+
FLIGHT 25
|
21
|
+
PRINCE 24
|
22
|
+
CASINO 24
|
23
|
+
CHORAL 23
|
24
|
+
NECTAR 22
|
25
|
+
RATION 22
|
26
|
+
STREAM 21
|
27
|
+
PLANET 21
|
28
|
+
GIFTED 20
|
29
|
+
DETAIL 19
|
30
|
+
MASTER 18
|
31
|
+
STORE 18
|
32
|
+
TIGER 18
|
33
|
+
CANOE 17
|
34
|
+
STOLE 17
|
35
|
+
CLOTH 16
|
36
|
+
CORPS 16
|
37
|
+
SEPIA 16
|
38
|
+
CHILD 15
|
39
|
+
SINCE 15
|
40
|
+
PEACH 14
|
41
|
+
DRONE 14
|
42
|
+
SLIDE 14
|
43
|
+
DRAFT 13
|
44
|
+
MEDIC 13
|
45
|
+
MAPLE 12
|
46
|
+
CHAIN 12
|
47
|
+
AGILE 11
|
48
|
+
GAME 11
|
49
|
+
THIS 11
|
50
|
+
LOFT 10
|
51
|
+
SING 10
|
52
|
+
RAID 9
|
53
|
+
STEP 9
|
54
|
+
THIN 8
|
55
|
+
ROLE 7
|
56
|
+
LIFE 7
|
57
|
+
HELP 6
|
58
|
+
MICE 6
|
59
|
+
GRID 6
|
60
|
+
EAST 6
|
61
|
+
EARS 5
|
62
|
+
SAID 5
|
63
|
+
INFO 5
|
64
|
+
LIST 4
|
65
|
+
LIME 4
|
66
|
+
LEFT 4
|
67
|
+
OIL 5
|
68
|
+
TEA 4
|
69
|
+
NOT 4
|
70
|
+
OAF 4
|
71
|
+
MAD 3
|
72
|
+
TIC 2
|
73
|
+
ACT 2
|
74
|
+
MAP 2
|
75
|
+
THE 1
|
@@ -0,0 +1,102 @@
|
|
1
|
+
24 100
|
2
|
+
O A S U W J N F X E M K Y L G C I B R P V H T D
|
3
|
+
EXPURGATIONS 100
|
4
|
+
LAWRENCIUMS 99
|
5
|
+
JUXTAPOSING 98
|
6
|
+
WORKMANSHIP 97
|
7
|
+
JOURNALISED 96
|
8
|
+
DECATHLONS 95
|
9
|
+
METHODICAL 94
|
10
|
+
NIGHTCLUBS 93
|
11
|
+
PLAYGROUND 92
|
12
|
+
FLYWEIGHTS 91
|
13
|
+
DISCOURAGE 90
|
14
|
+
DUPLICATOR 89
|
15
|
+
HEADSTRONG 88
|
16
|
+
FLUORIDATE 87
|
17
|
+
FORMIDABLY 86
|
18
|
+
IMPORTANCE 85
|
19
|
+
OLIGARCHS 84
|
20
|
+
TAXIDERMY 83
|
21
|
+
SUPREMACY 82
|
22
|
+
SINGAPORE 81
|
23
|
+
COMPARING 80
|
24
|
+
SYMPHONIC 79
|
25
|
+
STRANGELY 78
|
26
|
+
MOUNTABLE 77
|
27
|
+
ROMANTICS 76
|
28
|
+
JUDGMENTS 75
|
29
|
+
TRIANGLES 74
|
30
|
+
PHARYNGES 73
|
31
|
+
OBSCURITY 72
|
32
|
+
SLAUGHTER 71
|
33
|
+
SKEPTICAL 70
|
34
|
+
PRUDENTLY 69
|
35
|
+
LIGHTFACE 68
|
36
|
+
DECLARING 67
|
37
|
+
ORGANISED 66
|
38
|
+
PNEUMATIC 65
|
39
|
+
AUDITORY 64
|
40
|
+
HOMESPUN 63
|
41
|
+
PINOCHLE 62
|
42
|
+
AUCTIONS 61
|
43
|
+
MONSIEUR 60
|
44
|
+
SOCIETAL 59
|
45
|
+
FORENSIC 58
|
46
|
+
CHARMING 57
|
47
|
+
PODIATRY 56
|
48
|
+
BEGONIAS 55
|
49
|
+
CLARINET 54
|
50
|
+
BREAKOUT 53
|
51
|
+
CRAFTING 52
|
52
|
+
LADYSHIP 51
|
53
|
+
OBLIGATE 50
|
54
|
+
SPOILAGE 49
|
55
|
+
BACHELOR 48
|
56
|
+
SONGBIRD 47
|
57
|
+
HORNLIKE 46
|
58
|
+
CHOLERA 45
|
59
|
+
GAINFUL 44
|
60
|
+
ROMAINE 43
|
61
|
+
CAPTURE 42
|
62
|
+
MUSTARD 41
|
63
|
+
DUCTILE 40
|
64
|
+
HOLIDAY 39
|
65
|
+
UTOPIAS 38
|
66
|
+
PRUDENT 37
|
67
|
+
PROTEIN 36
|
68
|
+
YOGURTS 35
|
69
|
+
TSUNAMI 34
|
70
|
+
GRYPHON 33
|
71
|
+
BRIEFLY 32
|
72
|
+
INDULGE 31
|
73
|
+
THINKS 30
|
74
|
+
MELODY 29
|
75
|
+
STIFLE 28
|
76
|
+
CASKET 27
|
77
|
+
POLICY 26
|
78
|
+
MORTAL 25
|
79
|
+
EPILOG 24
|
80
|
+
LOCKER 23
|
81
|
+
GARDEN 22
|
82
|
+
LOCATE 21
|
83
|
+
WHITEN 20
|
84
|
+
VERMIN 19
|
85
|
+
FOREST 18
|
86
|
+
PONDER 17
|
87
|
+
BEYOND 16
|
88
|
+
DETOUR 15
|
89
|
+
FILET 14
|
90
|
+
PRUNE 13
|
91
|
+
PACER 12
|
92
|
+
USAGE 11
|
93
|
+
CRISE 10
|
94
|
+
BRUIT 9
|
95
|
+
BUSHY 8
|
96
|
+
FORAY 7
|
97
|
+
FLANK 6
|
98
|
+
PEDAL 5
|
99
|
+
SKIER 4
|
100
|
+
FAROE 3
|
101
|
+
LAGER 2
|
102
|
+
MODAL 1
|
@@ -0,0 +1 @@
|
|
1
|
+
S 4-1
|
@@ -0,0 +1 @@
|
|
1
|
+
A 10-5
|
@@ -0,0 +1 @@
|
|
1
|
+
S 3-3
|
@@ -0,0 +1 @@
|
|
1
|
+
I 29-14
|
@@ -0,0 +1 @@
|
|
1
|
+
A 5-0
|
@@ -0,0 +1,21 @@
|
|
1
|
+
#include <iostream>
|
2
|
+
#include <string>
|
3
|
+
#include <vector>
|
4
|
+
#include <algorithm>
|
5
|
+
|
6
|
+
using namespace std;
|
7
|
+
|
8
|
+
int main()
|
9
|
+
{
|
10
|
+
int n;
|
11
|
+
cin >> n; cin.ignore();
|
12
|
+
for (int i = 0; i < n; i++) {
|
13
|
+
string row;
|
14
|
+
getline(cin, row);
|
15
|
+
}
|
16
|
+
|
17
|
+
// Write an answer using cout. DON'T FORGET THE "<< endl"
|
18
|
+
// To debug: cerr << "Debug messages..." << endl;
|
19
|
+
|
20
|
+
cout << "Solution" << endl;
|
21
|
+
}
|
@@ -0,0 +1,22 @@
|
|
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 N = in.nextInt();
|
10
|
+
if (in.hasNextLine()) {
|
11
|
+
in.nextLine();
|
12
|
+
}
|
13
|
+
for (int i = 0; i < N; i++) {
|
14
|
+
String row = in.nextLine();
|
15
|
+
}
|
16
|
+
|
17
|
+
// Write an answer using System.out.println()
|
18
|
+
// To debug: System.err.println("Debug messages...");
|
19
|
+
|
20
|
+
System.out.println("Solution");
|
21
|
+
}
|
22
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?php
|
2
|
+
fscanf(STDIN, "%d", $N);
|
3
|
+
for ($i = 0; $i < $N; $i++)
|
4
|
+
{
|
5
|
+
$row = stream_get_line(STDIN, 32 + 1, "\n");
|
6
|
+
}
|
7
|
+
|
8
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
9
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
10
|
+
|
11
|
+
echo("Solution\n");
|
@@ -0,0 +1,63 @@
|
|
1
|
+
{
|
2
|
+
"path": "expert/Nurikabe",
|
3
|
+
"name": "Nurikabe",
|
4
|
+
"alphanumName": "Nurikabe",
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/nurikabe",
|
6
|
+
"tests": [
|
7
|
+
{
|
8
|
+
"name": "Test 1",
|
9
|
+
"alphanumName": "test1",
|
10
|
+
"file": "01 - test 1.txt"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"name": "Test 2",
|
14
|
+
"alphanumName": "test2",
|
15
|
+
"file": "02 - test 2.txt"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "Test 3",
|
19
|
+
"alphanumName": "test3",
|
20
|
+
"file": "03 - test 3.txt"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": "Test 4",
|
24
|
+
"alphanumName": "test4",
|
25
|
+
"file": "04 - test 4.txt"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "Test 5",
|
29
|
+
"alphanumName": "test5",
|
30
|
+
"file": "05 - test 5.txt"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"name": "Test 6",
|
34
|
+
"alphanumName": "test6",
|
35
|
+
"file": "06 - test 6.txt"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"name": "Test 7",
|
39
|
+
"alphanumName": "test7",
|
40
|
+
"file": "07 - test 7.txt"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"name": "Test 8",
|
44
|
+
"alphanumName": "test8",
|
45
|
+
"file": "08 - test 8.txt"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"name": "Test 9",
|
49
|
+
"alphanumName": "test9",
|
50
|
+
"file": "09 - test 9.txt"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"name": "Test 10",
|
54
|
+
"alphanumName": "test10",
|
55
|
+
"file": "10 - test 10.txt"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"name": "Test 11",
|
59
|
+
"alphanumName": "test11",
|
60
|
+
"file": "11 - test 11.txt"
|
61
|
+
}
|
62
|
+
]
|
63
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
15
|
2
|
+
..5............
|
3
|
+
.1.........3...
|
4
|
+
...1.2.1..4....
|
5
|
+
...........3...
|
6
|
+
2...5..........
|
7
|
+
......1...6....
|
8
|
+
..1..........3.
|
9
|
+
1.....2.2.....1
|
10
|
+
.1..........2..
|
11
|
+
....7...1......
|
12
|
+
..........5...2
|
13
|
+
...2...........
|
14
|
+
....6..1.2.3...
|
15
|
+
...6.........2.
|
16
|
+
............9..
|
@@ -0,0 +1,16 @@
|
|
1
|
+
15
|
2
|
+
.......4.......
|
3
|
+
........1......
|
4
|
+
...1.........2.
|
5
|
+
.....7......6..
|
6
|
+
....2.....2....
|
7
|
+
......1....2...
|
8
|
+
.7.......1.....
|
9
|
+
4.4.........4.4
|
10
|
+
.....2.......6.
|
11
|
+
...2....5......
|
12
|
+
....3.....1....
|
13
|
+
..2......2.....
|
14
|
+
.3.....3...2...
|
15
|
+
......3.....2..
|
16
|
+
.......4.......
|
@@ -0,0 +1,21 @@
|
|
1
|
+
20
|
2
|
+
4..1.3.3.4.2..1.2.4.
|
3
|
+
....................
|
4
|
+
..3........1.4...2..
|
5
|
+
2...........1.......
|
6
|
+
..2.2.3.1.2.......1.
|
7
|
+
............3..3.1..
|
8
|
+
2.......2.........1.
|
9
|
+
..1.3.....2..3...3..
|
10
|
+
.2.1...............2
|
11
|
+
....2.1.3..1...3....
|
12
|
+
..1....1..3..1......
|
13
|
+
1....1...........2..
|
14
|
+
.1.2...4....1.1.3..2
|
15
|
+
.........1.4........
|
16
|
+
4..6...........1....
|
17
|
+
......1.1.1.....3.1.
|
18
|
+
.....4.1...4..2.....
|
19
|
+
1.3.....1.2.......1.
|
20
|
+
.................1..
|
21
|
+
1.......1.....3....1
|
@@ -0,0 +1,15 @@
|
|
1
|
+
~~55555~~~~~~~~
|
2
|
+
~1~~~~~~44~333~
|
3
|
+
~~~1~2~1~44~~~~
|
4
|
+
~55~~2~~~~~333~
|
5
|
+
2~555~~6666~~~~
|
6
|
+
2~~~~~1~~66~33~
|
7
|
+
~~1~77~~2~~~~3~
|
8
|
+
1~~77~2~2~55~~1
|
9
|
+
~1~77~2~~~5~2~~
|
10
|
+
~~~~7~~~1~5~2~2
|
11
|
+
~6~2~~66~~5~~~2
|
12
|
+
~6~2~66~~2~33~~
|
13
|
+
~6~~66~1~2~3~2~
|
14
|
+
~666~~~~~~~~~2~
|
15
|
+
~~~~999999999~~
|
@@ -0,0 +1,15 @@
|
|
1
|
+
~~~~4444~~~~~~~
|
2
|
+
~77~~~~~1~66~2~
|
3
|
+
~7~1~77~~~66~2~
|
4
|
+
~7~~~7777~~66~~
|
5
|
+
~7~22~~7~22~~~4
|
6
|
+
~7~~~~1~~~~22~4
|
7
|
+
~7~44~~5~1~~~~4
|
8
|
+
4~44~2~5~~444~4
|
9
|
+
4~~~~2~55~4~~6~
|
10
|
+
4~22~~~~5~~~66~
|
11
|
+
4~~~33~3~~1~66~
|
12
|
+
~~22~3~3~2~2~6~
|
13
|
+
~3~~~~~3~2~2~~~
|
14
|
+
~33~333~~~~~22~
|
15
|
+
~~~~~~~4444~~~~
|
@@ -0,0 +1,20 @@
|
|
1
|
+
44~1~3~3~4~22~1~2~44
|
2
|
+
44~~~3~3~4~~~~~~2~~4
|
3
|
+
~~33~3~3~4~1~444~2~4
|
4
|
+
2~~3~~~~~4~~1~~4~2~~
|
5
|
+
2~2~2~3~1~2~~3~~~~1~
|
6
|
+
~~2~2~33~~2~33~3~1~~
|
7
|
+
2~~~~~~~2~~~~~~3~~1~
|
8
|
+
2~1~333~2~22~3~3~3~~
|
9
|
+
~2~1~~~~~3~~~33~~3~2
|
10
|
+
~2~~2~1~33~1~~~3~3~2
|
11
|
+
~~1~2~~1~~3~~1~3~~~~
|
12
|
+
1~~~~1~~4~33~~~3~22~
|
13
|
+
~1~22~~44~~~1~1~3~~2
|
14
|
+
~~~~~6~4~1~4~~~~33~2
|
15
|
+
44~666~~~~~444~1~~~~
|
16
|
+
44~6~~1~1~1~~~~~3~1~
|
17
|
+
~~~6~4~1~~~44~2~33~~
|
18
|
+
1~3~~4~~1~2~4~2~~~1~
|
19
|
+
~~33~44~~~2~4~~3~1~~
|
20
|
+
1~~~~~~~1~~~~~33~~~1
|
@@ -0,0 +1,25 @@
|
|
1
|
+
#include <iostream>
|
2
|
+
#include <string>
|
3
|
+
#include <vector>
|
4
|
+
#include <algorithm>
|
5
|
+
|
6
|
+
using namespace std;
|
7
|
+
|
8
|
+
int main()
|
9
|
+
{
|
10
|
+
int t;
|
11
|
+
cin >> t; cin.ignore();
|
12
|
+
for (int i = 0; i < t; i++) {
|
13
|
+
long long p;
|
14
|
+
string r;
|
15
|
+
string c;
|
16
|
+
cin >> p >> r >> c; cin.ignore();
|
17
|
+
}
|
18
|
+
for (int i = 0; i < t; i++) {
|
19
|
+
|
20
|
+
// Write an answer using cout. DON'T FORGET THE "<< endl"
|
21
|
+
// To debug: cerr << "Debug messages..." << endl;
|
22
|
+
|
23
|
+
cout << "answer" << endl;
|
24
|
+
}
|
25
|
+
}
|