@cyrilverloop/codingame-configuration 1.17.1 → 1.19.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 +46 -1
- 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/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/BeautifulBaseIsABeautifulSum/code/CGCode.cpp +17 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.java +16 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.js +6 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.php +7 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.ts +6 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/config.json +33 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/01 - test 1.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/02 - test 2.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/03 - test 3.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/04 - test 4.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/input/05 - test 5.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/01 - test 1.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/02 - test 2.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/03 - test 3.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/04 - test 4.txt +1 -0
- package/config/hard/BeautifulBaseIsABeautifulSum/output/05 - test 5.txt +1 -0
- 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/hard/UnfloodTheWorld/code/CGCode.cpp +24 -0
- package/config/hard/UnfloodTheWorld/code/CGCode.java +22 -0
- package/config/hard/UnfloodTheWorld/code/CGCode.js +14 -0
- package/config/hard/UnfloodTheWorld/code/CGCode.php +15 -0
- package/config/hard/UnfloodTheWorld/code/CGCode.ts +14 -0
- package/config/hard/UnfloodTheWorld/config.json +48 -0
- package/config/hard/UnfloodTheWorld/input/01 - One drain.txt +5 -0
- package/config/hard/UnfloodTheWorld/input/02 - Hill.txt +6 -0
- package/config/hard/UnfloodTheWorld/input/03 - Wall.txt +4 -0
- package/config/hard/UnfloodTheWorld/input/04 - Flat field.txt +4 -0
- package/config/hard/UnfloodTheWorld/input/05 - Chess board.txt +6 -0
- package/config/hard/UnfloodTheWorld/input/06 - Fractal.txt +10 -0
- package/config/hard/UnfloodTheWorld/input/07 - Maze.txt +10 -0
- package/config/hard/UnfloodTheWorld/input/08 - Plateaus.txt +7 -0
- package/config/hard/UnfloodTheWorld/output/01 - One drain.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/02 - Hill.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/03 - Wall.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/04 - Flat field.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/05 - Chess board.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/06 - Fractal.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/07 - Maze.txt +1 -0
- package/config/hard/UnfloodTheWorld/output/08 - Plateaus.txt +1 -0
- package/config/{hard → medium}/Hangman/config.json +1 -1
- package/config/medium/HillNotationAndHillOrder/code/CGCode.cpp +26 -0
- package/config/medium/HillNotationAndHillOrder/code/CGCode.java +26 -0
- package/config/medium/HillNotationAndHillOrder/code/CGCode.js +9 -0
- package/config/medium/HillNotationAndHillOrder/code/CGCode.php +11 -0
- package/config/medium/HillNotationAndHillOrder/code/CGCode.ts +9 -0
- package/config/medium/HillNotationAndHillOrder/config.json +33 -0
- package/config/medium/HillNotationAndHillOrder/input/01 - Simple Sort.txt +4 -0
- package/config/medium/HillNotationAndHillOrder/input/02 - Quantity Sort.txt +7 -0
- package/config/medium/HillNotationAndHillOrder/input/03 - Duplicates.txt +4 -0
- package/config/medium/HillNotationAndHillOrder/input/04 - Bigger Sort.txt +11 -0
- package/config/medium/HillNotationAndHillOrder/input/05 - Parenthesis.txt +4 -0
- package/config/medium/HillNotationAndHillOrder/output/01 - Simple Sort.txt +3 -0
- package/config/medium/HillNotationAndHillOrder/output/02 - Quantity Sort.txt +6 -0
- package/config/medium/HillNotationAndHillOrder/output/03 - Duplicates.txt +1 -0
- package/config/medium/HillNotationAndHillOrder/output/04 - Bigger Sort.txt +10 -0
- package/config/medium/HillNotationAndHillOrder/output/05 - Parenthesis.txt +3 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.cpp +23 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.java +24 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.js +11 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.php +13 -0
- package/config/medium/InequalityOverlapArea/code/CGCode.ts +11 -0
- package/config/medium/InequalityOverlapArea/config.json +68 -0
- package/config/medium/InequalityOverlapArea/input/01 - Simple Overlap.txt +4 -0
- package/config/medium/InequalityOverlapArea/input/02 - Floating.txt +5 -0
- package/config/medium/InequalityOverlapArea/input/03 - Pentagon.txt +6 -0
- package/config/medium/InequalityOverlapArea/input/04 - NO.txt +9 -0
- package/config/medium/InequalityOverlapArea/input/05 - Infinite.txt +7 -0
- package/config/medium/InequalityOverlapArea/input/06 - NoOverlap.txt +10 -0
- package/config/medium/InequalityOverlapArea/input/07 - Not Finite.txt +10 -0
- package/config/medium/InequalityOverlapArea/input/08 - Same Graph.txt +6 -0
- package/config/medium/InequalityOverlapArea/input/09 - One Line.txt +7 -0
- package/config/medium/InequalityOverlapArea/input/10 - One Point.txt +11 -0
- package/config/medium/InequalityOverlapArea/input/11 - Quadrilateral.txt +5 -0
- package/config/medium/InequalityOverlapArea/input/12 - Rectangle.txt +5 -0
- package/config/medium/InequalityOverlapArea/output/01 - Simple Overlap.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/02 - Floating.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/03 - Pentagon.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/04 - NO.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/05 - Infinite.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/06 - NoOverlap.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/07 - Not Finite.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/08 - Same Graph.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/09 - One Line.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/10 - One Point.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/11 - Quadrilateral.txt +1 -0
- package/config/medium/InequalityOverlapArea/output/12 - Rectangle.txt +1 -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/config/medium/SwappingElements/code/CGCode.cpp +21 -0
- package/config/medium/SwappingElements/code/CGCode.java +22 -0
- package/config/medium/SwappingElements/code/CGCode.js +9 -0
- package/config/medium/SwappingElements/code/CGCode.php +11 -0
- package/config/medium/SwappingElements/code/CGCode.ts +9 -0
- package/config/medium/SwappingElements/config.json +83 -0
- package/config/medium/SwappingElements/input/01 - Kindergarten.txt +4 -0
- package/config/medium/SwappingElements/input/02 - ABC.txt +8 -0
- package/config/medium/SwappingElements/input/03 - Thread.txt +5 -0
- package/config/medium/SwappingElements/input/04 - Bob.txt +8 -0
- package/config/medium/SwappingElements/input/05 - Not Bob.txt +4 -0
- package/config/medium/SwappingElements/input/06 - Vacuum of the Space Key.txt +7 -0
- package/config/medium/SwappingElements/input/07 - Periodic Table.txt +19 -0
- package/config/medium/SwappingElements/input/08 - Chemical Compounds.txt +28 -0
- package/config/medium/SwappingElements/input/09 - Gibberish.txt +14 -0
- package/config/medium/SwappingElements/input/10 - Negative.txt +40 -0
- package/config/medium/SwappingElements/input/11 - How/342/200/231s your day going.txt" +19 -0
- package/config/medium/SwappingElements/input/12 - The World Ends.txt +117 -0
- package/config/medium/SwappingElements/input/13 - Numbering the Last One.txt +30 -0
- package/config/medium/SwappingElements/input/14 - Random.txt +19 -0
- package/config/medium/SwappingElements/input/15 - Coding.txt +10 -0
- package/config/medium/SwappingElements/output/01 - Kindergarten.txt +1 -0
- package/config/medium/SwappingElements/output/02 - ABC.txt +1 -0
- package/config/medium/SwappingElements/output/03 - Thread.txt +1 -0
- package/config/medium/SwappingElements/output/04 - Bob.txt +1 -0
- package/config/medium/SwappingElements/output/05 - Not Bob.txt +1 -0
- package/config/medium/SwappingElements/output/06 - Vacuum of the Space Key.txt +1 -0
- package/config/medium/SwappingElements/output/07 - Periodic Table.txt +1 -0
- package/config/medium/SwappingElements/output/08 - Chemical Compounds.txt +1 -0
- package/config/medium/SwappingElements/output/09 - Gibberish.txt +1 -0
- package/config/medium/SwappingElements/output/10 - Negative.txt +1 -0
- package/config/medium/SwappingElements/output/11 - How/342/200/231s your day going.txt" +1 -0
- package/config/medium/SwappingElements/output/12 - The World Ends.txt +1 -0
- package/config/medium/SwappingElements/output/13 - Numbering the Last One.txt +1 -0
- package/config/medium/SwappingElements/output/14 - Random.txt +1 -0
- package/config/medium/SwappingElements/output/15 - Coding.txt +1 -0
- package/config/medium/TableSolver/code/CGCode.cpp +21 -0
- package/config/medium/TableSolver/code/CGCode.java +22 -0
- package/config/medium/TableSolver/code/CGCode.js +9 -0
- package/config/medium/TableSolver/code/CGCode.php +11 -0
- package/config/medium/TableSolver/code/CGCode.ts +9 -0
- package/config/medium/TableSolver/config.json +43 -0
- package/config/medium/TableSolver/input/01 - Addition.txt +8 -0
- package/config/medium/TableSolver/input/02 - Subtraction.txt +8 -0
- package/config/medium/TableSolver/input/03 - Multiplication.txt +10 -0
- package/config/medium/TableSolver/input/04 - small.txt +4 -0
- package/config/medium/TableSolver/input/05 - BIG.txt +15 -0
- package/config/medium/TableSolver/input/06 - CG.txt +24 -0
- package/config/medium/TableSolver/input/07 - 0.txt +10 -0
- package/config/medium/TableSolver/output/01 - Addition.txt +7 -0
- package/config/medium/TableSolver/output/02 - Subtraction.txt +7 -0
- package/config/medium/TableSolver/output/03 - Multiplication.txt +9 -0
- package/config/medium/TableSolver/output/04 - small.txt +3 -0
- package/config/medium/TableSolver/output/05 - BIG.txt +15 -0
- package/config/medium/TableSolver/output/06 - CG.txt +23 -0
- package/config/medium/TableSolver/output/07 - 0.txt +9 -0
- package/package.json +1 -1
- /package/config/{hard → medium}/Hangman/code/CGCode.js +0 -0
- /package/config/{hard → medium}/Hangman/code/CGCode.php +0 -0
- /package/config/{hard → medium}/Hangman/input/01 - Solution found.txt +0 -0
- /package/config/{hard → medium}/Hangman/input/02 - Wrong answer.txt +0 -0
- /package/config/{hard → medium}/Hangman/input/03 - White space.txt +0 -0
- /package/config/{hard → medium}/Hangman/input/04 - Same letter.txt +0 -0
- /package/config/{hard → medium}/Hangman/output/01 - Solution found.txt +0 -0
- /package/config/{hard → medium}/Hangman/output/02 - Wrong answer.txt +0 -0
- /package/config/{hard → medium}/Hangman/output/03 - White space.txt +0 -0
- /package/config/{hard → medium}/Hangman/output/04 - Same letter.txt +0 -0
@@ -0,0 +1,100 @@
|
|
1
|
+
3222837
|
2
|
+
899411843
|
3
|
+
814595114
|
4
|
+
802971516
|
5
|
+
238708992
|
6
|
+
911286212
|
7
|
+
294325365
|
8
|
+
610387481
|
9
|
+
133040953
|
10
|
+
15853874
|
11
|
+
432834171
|
12
|
+
185896825
|
13
|
+
20637624
|
14
|
+
445477334
|
15
|
+
980078570
|
16
|
+
624504585
|
17
|
+
923830418
|
18
|
+
549587577
|
19
|
+
12547395
|
20
|
+
921957761
|
21
|
+
231547540
|
22
|
+
293150600
|
23
|
+
875603621
|
24
|
+
242640175
|
25
|
+
268611175
|
26
|
+
748549163
|
27
|
+
171149323
|
28
|
+
454212985
|
29
|
+
930177182
|
30
|
+
730442272
|
31
|
+
173570081
|
32
|
+
530068730
|
33
|
+
491597856
|
34
|
+
918851556
|
35
|
+
911483594
|
36
|
+
70796017
|
37
|
+
122429718
|
38
|
+
388220365
|
39
|
+
830210654
|
40
|
+
419849115
|
41
|
+
638968511
|
42
|
+
719845780
|
43
|
+
137877771
|
44
|
+
607628367
|
45
|
+
376084639
|
46
|
+
105674112
|
47
|
+
875078750
|
48
|
+
746773911
|
49
|
+
663000430
|
50
|
+
727294464
|
51
|
+
315386359
|
52
|
+
530270174
|
53
|
+
341372857
|
54
|
+
869622459
|
55
|
+
61612497
|
56
|
+
100662934
|
57
|
+
635782224
|
58
|
+
44307545
|
59
|
+
411225341
|
60
|
+
370485462
|
61
|
+
723057123
|
62
|
+
554973408
|
63
|
+
752381229
|
64
|
+
962806340
|
65
|
+
300479629
|
66
|
+
812086048
|
67
|
+
340719754
|
68
|
+
606108096
|
69
|
+
478338214
|
70
|
+
68480775
|
71
|
+
872938546
|
72
|
+
91928676
|
73
|
+
983889295
|
74
|
+
95234329
|
75
|
+
614097442
|
76
|
+
319572309
|
77
|
+
787194434
|
78
|
+
509208
|
79
|
+
928389892
|
80
|
+
41732983
|
81
|
+
461523603
|
82
|
+
798008693
|
83
|
+
705216796
|
84
|
+
706787207
|
85
|
+
264221328
|
86
|
+
817459776
|
87
|
+
504942069
|
88
|
+
863749947
|
89
|
+
204142808
|
90
|
+
644638538
|
91
|
+
947799193
|
92
|
+
725122563
|
93
|
+
155675577
|
94
|
+
604977660
|
95
|
+
991341467
|
96
|
+
946618590
|
97
|
+
132400209
|
98
|
+
846675781
|
99
|
+
743685319
|
100
|
+
448211378
|
@@ -0,0 +1,100 @@
|
|
1
|
+
884754543
|
2
|
+
429871953
|
3
|
+
753234302
|
4
|
+
574775907
|
5
|
+
595329166
|
6
|
+
961356880
|
7
|
+
290790013
|
8
|
+
316624481
|
9
|
+
184540389
|
10
|
+
981910289
|
11
|
+
436546966
|
12
|
+
144950663
|
13
|
+
356175480
|
14
|
+
492463298
|
15
|
+
675767286
|
16
|
+
768212855
|
17
|
+
660213
|
18
|
+
550271686
|
19
|
+
538980736
|
20
|
+
686867547
|
21
|
+
239418431
|
22
|
+
146154783
|
23
|
+
847182056
|
24
|
+
280300077
|
25
|
+
635123948
|
26
|
+
279729676
|
27
|
+
186036704
|
28
|
+
158738248
|
29
|
+
255327687
|
30
|
+
142148329
|
31
|
+
233244030
|
32
|
+
308444183
|
33
|
+
323127758
|
34
|
+
963802011
|
35
|
+
644880479
|
36
|
+
707868523
|
37
|
+
291057384
|
38
|
+
139378468
|
39
|
+
35805792
|
40
|
+
733622727
|
41
|
+
526805822
|
42
|
+
758951904
|
43
|
+
768420088
|
44
|
+
34450751
|
45
|
+
142820888
|
46
|
+
71651626
|
47
|
+
334687251
|
48
|
+
316753930
|
49
|
+
15977741
|
50
|
+
113985356
|
51
|
+
511671032
|
52
|
+
448229090
|
53
|
+
719787327
|
54
|
+
755526475
|
55
|
+
259992089
|
56
|
+
507908485
|
57
|
+
777917882
|
58
|
+
411651973
|
59
|
+
551167368
|
60
|
+
655256424
|
61
|
+
857561959
|
62
|
+
47348100
|
63
|
+
8062631
|
64
|
+
781006374
|
65
|
+
340855702
|
66
|
+
189849945
|
67
|
+
515439492
|
68
|
+
653527324
|
69
|
+
505635309
|
70
|
+
337996034
|
71
|
+
301917527
|
72
|
+
760380578
|
73
|
+
304082320
|
74
|
+
500569377
|
75
|
+
968257063
|
76
|
+
314844358
|
77
|
+
452654579
|
78
|
+
61938965
|
79
|
+
373350383
|
80
|
+
50917130
|
81
|
+
3281460
|
82
|
+
875091081
|
83
|
+
926164666
|
84
|
+
193008206
|
85
|
+
232805337
|
86
|
+
942343887
|
87
|
+
222816806
|
88
|
+
984778220
|
89
|
+
674887703
|
90
|
+
82801276
|
91
|
+
902302551
|
92
|
+
343583382
|
93
|
+
165009388
|
94
|
+
333323799
|
95
|
+
406161996
|
96
|
+
663356373
|
97
|
+
941574976
|
98
|
+
876625048
|
99
|
+
331905123
|
100
|
+
765004554
|
@@ -0,0 +1,100 @@
|
|
1
|
+
384395534
|
2
|
+
285567405
|
3
|
+
605709354
|
4
|
+
717968038
|
5
|
+
560564496
|
6
|
+
69880733
|
7
|
+
27418121
|
8
|
+
362947910
|
9
|
+
325158481
|
10
|
+
156715989
|
11
|
+
974954508
|
12
|
+
208556540
|
13
|
+
732227230
|
14
|
+
270219113
|
15
|
+
760047332
|
16
|
+
955608960
|
17
|
+
463933532
|
18
|
+
979754161
|
19
|
+
440889229
|
20
|
+
317885969
|
21
|
+
405449758
|
22
|
+
25782832
|
23
|
+
148049989
|
24
|
+
803157200
|
25
|
+
907555522
|
26
|
+
283374551
|
27
|
+
327595327
|
28
|
+
696990736
|
29
|
+
693232790
|
30
|
+
365940320
|
31
|
+
973230631
|
32
|
+
493811289
|
33
|
+
479304823
|
34
|
+
557812293
|
35
|
+
652716816
|
36
|
+
525892853
|
37
|
+
89699286
|
38
|
+
894381328
|
39
|
+
319787875
|
40
|
+
323627413
|
41
|
+
274915872
|
42
|
+
352270299
|
43
|
+
769924179
|
44
|
+
711175190
|
45
|
+
279376637
|
46
|
+
409562169
|
47
|
+
881266016
|
48
|
+
646984297
|
49
|
+
833633732
|
50
|
+
383887035
|
51
|
+
3086521
|
52
|
+
796210202
|
53
|
+
779689081
|
54
|
+
863195130
|
55
|
+
856158839
|
56
|
+
456620982
|
57
|
+
11541656
|
58
|
+
859454042
|
59
|
+
617920704
|
60
|
+
640643927
|
61
|
+
465196572
|
62
|
+
172558861
|
63
|
+
969741469
|
64
|
+
815771475
|
65
|
+
247040712
|
66
|
+
211064054
|
67
|
+
979415256
|
68
|
+
942109850
|
69
|
+
453734378
|
70
|
+
174079656
|
71
|
+
99612036
|
72
|
+
11935770
|
73
|
+
704325431
|
74
|
+
360250050
|
75
|
+
454458859
|
76
|
+
395752692
|
77
|
+
759381103
|
78
|
+
674100229
|
79
|
+
316167613
|
80
|
+
750195635
|
81
|
+
62593682
|
82
|
+
602379455
|
83
|
+
446210195
|
84
|
+
641486216
|
85
|
+
157570196
|
86
|
+
12471843
|
87
|
+
807355836
|
88
|
+
239546496
|
89
|
+
235758104
|
90
|
+
20484913
|
91
|
+
653828435
|
92
|
+
419073554
|
93
|
+
587709193
|
94
|
+
135041512
|
95
|
+
919409689
|
96
|
+
569267021
|
97
|
+
633897853
|
98
|
+
337320300
|
99
|
+
753391094
|
100
|
+
418294844
|
@@ -0,0 +1,100 @@
|
|
1
|
+
709494941
|
2
|
+
228353649
|
3
|
+
817920883
|
4
|
+
958948321
|
5
|
+
36724278
|
6
|
+
490095886
|
7
|
+
187569350
|
8
|
+
398892023
|
9
|
+
200593142
|
10
|
+
857645401
|
11
|
+
840606570
|
12
|
+
211961908
|
13
|
+
618989062
|
14
|
+
66610636
|
15
|
+
571443806
|
16
|
+
61684357
|
17
|
+
605160662
|
18
|
+
618933342
|
19
|
+
92321853
|
20
|
+
649822910
|
21
|
+
714264337
|
22
|
+
402740563
|
23
|
+
758986108
|
24
|
+
709555730
|
25
|
+
279041287
|
26
|
+
827280806
|
27
|
+
766512783
|
28
|
+
23511986
|
29
|
+
63196114
|
30
|
+
298163789
|
31
|
+
411756232
|
32
|
+
645514070
|
33
|
+
957106394
|
34
|
+
537948887
|
35
|
+
256885850
|
36
|
+
313672297
|
37
|
+
199541189
|
38
|
+
448660922
|
39
|
+
618479418
|
40
|
+
943521225
|
41
|
+
583645909
|
42
|
+
977425916
|
43
|
+
424443375
|
44
|
+
312536181
|
45
|
+
214832602
|
46
|
+
172256979
|
47
|
+
419840305
|
48
|
+
851670792
|
49
|
+
799900265
|
50
|
+
267805352
|
51
|
+
403641393
|
52
|
+
686079661
|
53
|
+
73669384
|
54
|
+
190664308
|
55
|
+
696060315
|
56
|
+
855083823
|
57
|
+
299248429
|
58
|
+
484335996
|
59
|
+
308554435
|
60
|
+
709227770
|
61
|
+
991352910
|
62
|
+
35065149
|
63
|
+
894533211
|
64
|
+
617822824
|
65
|
+
328938526
|
66
|
+
640282099
|
67
|
+
24008786
|
68
|
+
966337623
|
69
|
+
48727133
|
70
|
+
363743481
|
71
|
+
18409868
|
72
|
+
494918235
|
73
|
+
384489881
|
74
|
+
31916426
|
75
|
+
39703013
|
76
|
+
200028273
|
77
|
+
631765220
|
78
|
+
501751031
|
79
|
+
620227046
|
80
|
+
57310287
|
81
|
+
443504972
|
82
|
+
376269440
|
83
|
+
490489386
|
84
|
+
83452935
|
85
|
+
192872308
|
86
|
+
934666515
|
87
|
+
205466938
|
88
|
+
111036893
|
89
|
+
676706495
|
90
|
+
655992472
|
91
|
+
435489579
|
92
|
+
400668738
|
93
|
+
728967193
|
94
|
+
361684789
|
95
|
+
204774717
|
96
|
+
875071893
|
97
|
+
669590149
|
98
|
+
956241526
|
99
|
+
121229448
|
100
|
+
673379436
|
@@ -0,0 +1,100 @@
|
|
1
|
+
113082768
|
2
|
+
799852493
|
3
|
+
610084796
|
4
|
+
66119
|
5
|
+
4166
|
6
|
+
105503059
|
7
|
+
44567
|
8
|
+
938003001
|
9
|
+
458303909
|
10
|
+
11047037
|
11
|
+
606592018
|
12
|
+
910770092
|
13
|
+
551028318
|
14
|
+
379755835
|
15
|
+
977807398
|
16
|
+
639494152
|
17
|
+
1265
|
18
|
+
608304338
|
19
|
+
162983273
|
20
|
+
36650
|
21
|
+
315916109
|
22
|
+
58074945
|
23
|
+
616973404
|
24
|
+
27898
|
25
|
+
516835648
|
26
|
+
18567
|
27
|
+
977614905
|
28
|
+
163123896
|
29
|
+
413713747
|
30
|
+
735449760
|
31
|
+
918531181
|
32
|
+
328041041
|
33
|
+
52194
|
34
|
+
12300
|
35
|
+
565830554
|
36
|
+
790425325
|
37
|
+
595
|
38
|
+
108782451
|
39
|
+
358205444
|
40
|
+
609489906
|
41
|
+
744634995
|
42
|
+
725873602
|
43
|
+
583807866
|
44
|
+
278491395
|
45
|
+
314397984
|
46
|
+
1942
|
47
|
+
264
|
48
|
+
19524
|
49
|
+
50289
|
50
|
+
593877530
|
51
|
+
467084167
|
52
|
+
587161778
|
53
|
+
640184606
|
54
|
+
124179254
|
55
|
+
160
|
56
|
+
22612
|
57
|
+
482010954
|
58
|
+
21515
|
59
|
+
3289
|
60
|
+
665272802
|
61
|
+
924407885
|
62
|
+
78728103
|
63
|
+
20737
|
64
|
+
9917
|
65
|
+
362809789
|
66
|
+
198724012
|
67
|
+
740523971
|
68
|
+
625363650
|
69
|
+
689162218
|
70
|
+
751619180
|
71
|
+
433346581
|
72
|
+
387418281
|
73
|
+
319689799
|
74
|
+
20859
|
75
|
+
938534345
|
76
|
+
845897326
|
77
|
+
26058
|
78
|
+
702722628
|
79
|
+
467338046
|
80
|
+
273133909
|
81
|
+
3641
|
82
|
+
43517
|
83
|
+
791732485
|
84
|
+
965507339
|
85
|
+
478842649
|
86
|
+
725042976
|
87
|
+
10558
|
88
|
+
370
|
89
|
+
4932
|
90
|
+
392664908
|
91
|
+
1082
|
92
|
+
1452
|
93
|
+
17685
|
94
|
+
23632
|
95
|
+
575
|
96
|
+
869215710
|
97
|
+
29827583
|
98
|
+
552766257
|
99
|
+
200
|
100
|
+
23111
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#include <iostream>
|
2
|
+
#include <string>
|
3
|
+
#include <vector>
|
4
|
+
#include <algorithm>
|
5
|
+
|
6
|
+
using namespace std;
|
7
|
+
|
8
|
+
int main()
|
9
|
+
{
|
10
|
+
long long x;
|
11
|
+
cin >> x; cin.ignore();
|
12
|
+
int c;
|
13
|
+
cin >> c; cin.ignore();
|
14
|
+
for (int i = 0; i < c; i++) {
|
15
|
+
long long ai;
|
16
|
+
long long bi;
|
17
|
+
cin >> ai >> bi; cin.ignore();
|
18
|
+
}
|
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
|
+
}
|
@@ -0,0 +1,21 @@
|
|
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
|
+
long X = in.nextLong();
|
10
|
+
int C = in.nextInt();
|
11
|
+
for (int i = 0; i < C; i++) {
|
12
|
+
long ai = in.nextLong();
|
13
|
+
long bi = in.nextLong();
|
14
|
+
}
|
15
|
+
|
16
|
+
// Write an answer using System.out.println()
|
17
|
+
// To debug: System.err.println("Debug messages...");
|
18
|
+
|
19
|
+
System.out.println("answer");
|
20
|
+
}
|
21
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
const X = parseInt(readline());
|
2
|
+
const C = parseInt(readline());
|
3
|
+
for (let i = 0; i < C; i++) {
|
4
|
+
var inputs = readline().split(' ');
|
5
|
+
const ai = parseInt(inputs[0]);
|
6
|
+
const bi = parseInt(inputs[1]);
|
7
|
+
}
|
8
|
+
|
9
|
+
// Write an answer using console.log()
|
10
|
+
// To debug: console.error('Debug messages...');
|
11
|
+
|
12
|
+
console.log('answer');
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?php
|
2
|
+
fscanf(STDIN, "%d", $X);
|
3
|
+
fscanf(STDIN, "%d", $C);
|
4
|
+
for ($i = 0; $i < $C; $i++)
|
5
|
+
{
|
6
|
+
fscanf(STDIN, "%d %d", $ai, $bi);
|
7
|
+
}
|
8
|
+
|
9
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
10
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
11
|
+
|
12
|
+
echo("answer\n");
|
@@ -0,0 +1,12 @@
|
|
1
|
+
const X: number = parseInt(readline());
|
2
|
+
const C: number = parseInt(readline());
|
3
|
+
for (let i = 0; i < C; i++) {
|
4
|
+
var inputs: string[] = readline().split(' ');
|
5
|
+
const ai: number = parseInt(inputs[0]);
|
6
|
+
const bi: number = parseInt(inputs[1]);
|
7
|
+
}
|
8
|
+
|
9
|
+
// Write an answer using console.log()
|
10
|
+
// To debug: console.error('Debug messages...');
|
11
|
+
|
12
|
+
console.log('answer');
|
@@ -0,0 +1,28 @@
|
|
1
|
+
{
|
2
|
+
"path": "expert/PrimeTransformations",
|
3
|
+
"name": "Prime Transformations",
|
4
|
+
"alphanumName": "PrimeTransformations",
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/prime-transformations",
|
6
|
+
"tests": [
|
7
|
+
{
|
8
|
+
"name": "Forward Power",
|
9
|
+
"alphanumName": "ForwardPower",
|
10
|
+
"file": "01 - Forward Power.txt"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"name": "Backward Power",
|
14
|
+
"alphanumName": "BackwardPower",
|
15
|
+
"file": "02 - Backward Power.txt"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "Factor Deduction",
|
19
|
+
"alphanumName": "FactorDeduction",
|
20
|
+
"file": "03 - Factor Deduction.txt"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": "Index Deduction",
|
24
|
+
"alphanumName": "IndexDeduction",
|
25
|
+
"file": "04 - Index Deduction.txt"
|
26
|
+
}
|
27
|
+
]
|
28
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
625
|
@@ -0,0 +1 @@
|
|
1
|
+
17
|
@@ -0,0 +1 @@
|
|
1
|
+
17
|
@@ -0,0 +1 @@
|
|
1
|
+
29
|
@@ -0,0 +1,17 @@
|
|
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
|
+
|
13
|
+
// Write an answer using cout. DON'T FORGET THE "<< endl"
|
14
|
+
// To debug: cerr << "Debug messages..." << endl;
|
15
|
+
|
16
|
+
cout << "answer" << endl;
|
17
|
+
}
|
@@ -0,0 +1,16 @@
|
|
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
|
+
|
11
|
+
// Write an answer using System.out.println()
|
12
|
+
// To debug: System.err.println("Debug messages...");
|
13
|
+
|
14
|
+
System.out.println("answer");
|
15
|
+
}
|
16
|
+
}
|