@cyrilverloop/codingame-configuration 1.11.2 → 1.12.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 +33 -1
- package/config/hard/ASCIIArtQRCode/code/CGCode.js +10 -0
- package/config/hard/ASCIIArtQRCode/code/CGCode.php +12 -0
- package/config/hard/ASCIIArtQRCode/config.json +48 -0
- package/config/hard/ASCIIArtQRCode/input/01 - test 1.txt +15 -0
- package/config/hard/ASCIIArtQRCode/input/02 - test 2.txt +27 -0
- package/config/hard/ASCIIArtQRCode/input/03 - test 3.txt +28 -0
- package/config/hard/ASCIIArtQRCode/input/04 - test 4.txt +16 -0
- package/config/hard/ASCIIArtQRCode/input/05 - test 5.txt +28 -0
- package/config/hard/ASCIIArtQRCode/input/06 - test 6.txt +14 -0
- package/config/hard/ASCIIArtQRCode/input/07 - test 7.txt +18 -0
- package/config/hard/ASCIIArtQRCode/input/08 - test 8.txt +28 -0
- package/config/hard/ASCIIArtQRCode/output/01 - test 1.txt +1 -0
- package/config/hard/ASCIIArtQRCode/output/02 - test 2.txt +1 -0
- package/config/hard/ASCIIArtQRCode/output/03 - test 3.txt +1 -0
- package/config/hard/ASCIIArtQRCode/output/04 - test 4.txt +1 -0
- package/config/hard/ASCIIArtQRCode/output/05 - test 5.txt +1 -0
- package/config/hard/ASCIIArtQRCode/output/06 - test 6.txt +1 -0
- package/config/hard/ASCIIArtQRCode/output/07 - test 7.txt +1 -0
- package/config/hard/ASCIIArtQRCode/output/08 - test 8.txt +1 -0
- package/config/hard/ChessCavalry/code/CGCode.js +11 -0
- package/config/hard/ChessCavalry/code/CGCode.php +11 -0
- package/config/hard/ChessCavalry/config.json +43 -0
- package/config/hard/ChessCavalry/input/01 - Simple case.txt +3 -0
- package/config/hard/ChessCavalry/input/02 - 4 moves.txt +6 -0
- package/config/hard/ChessCavalry/input/03 - Avoid a queen.txt +6 -0
- package/config/hard/ChessCavalry/input/04 - Protected king.txt +9 -0
- package/config/hard/ChessCavalry/input/05 - Impossible.txt +6 -0
- package/config/hard/ChessCavalry/input/06 - So close, yet so far.txt +9 -0
- package/config/hard/ChessCavalry/input/07 - Still impossible.txt +9 -0
- package/config/hard/ChessCavalry/output/01 - Simple case.txt +1 -0
- package/config/hard/ChessCavalry/output/02 - 4 moves.txt +1 -0
- package/config/hard/ChessCavalry/output/03 - Avoid a queen.txt +1 -0
- package/config/hard/ChessCavalry/output/04 - Protected king.txt +1 -0
- package/config/hard/ChessCavalry/output/05 - Impossible.txt +1 -0
- package/config/hard/ChessCavalry/output/06 - So close, yet so far.txt +1 -0
- package/config/hard/ChessCavalry/output/07 - Still impossible.txt +1 -0
- package/config/hard/CubaxFolding/code/CGCode.js +7 -0
- package/config/hard/CubaxFolding/code/CGCode.php +8 -0
- package/config/hard/CubaxFolding/config.json +28 -0
- package/config/hard/CubaxFolding/input/01 - 2x2x2.txt +2 -0
- package/config/hard/CubaxFolding/input/02 - 3x3x3.txt +2 -0
- package/config/hard/CubaxFolding/input/03 - More solutions.txt +2 -0
- package/config/hard/CubaxFolding/input/04 - 4x4x4.txt +2 -0
- package/config/hard/CubaxFolding/output/01 - 2x2x2.txt +6 -0
- package/config/hard/CubaxFolding/output/02 - 3x3x3.txt +6 -0
- package/config/hard/CubaxFolding/output/03 - More solutions.txt +12 -0
- package/config/hard/CubaxFolding/output/04 - 4x4x4.txt +6 -0
- package/config/hard/DAWG/code/CGCode.js +9 -0
- package/config/hard/DAWG/code/CGCode.php +11 -0
- package/config/hard/DAWG/config.json +33 -0
- package/config/hard/DAWG/input/01 - test 1.txt +5 -0
- package/config/hard/DAWG/input/02 - test 2.txt +101 -0
- package/config/hard/DAWG/input/03 - test 3.txt +501 -0
- package/config/hard/DAWG/input/04 - test 4.txt +1001 -0
- package/config/hard/DAWG/input/05 - test 5.txt +1301 -0
- package/config/hard/DAWG/output/01 - test 1.txt +1 -0
- package/config/hard/DAWG/output/02 - test 2.txt +1 -0
- package/config/hard/DAWG/output/03 - test 3.txt +1 -0
- package/config/hard/DAWG/output/04 - test 4.txt +1 -0
- package/config/hard/DAWG/output/05 - test 5.txt +1 -0
- package/config/hard/Eighty86AssemblerPartI/code/CGCode.js +9 -0
- package/config/hard/Eighty86AssemblerPartI/code/CGCode.php +11 -0
- package/config/hard/Eighty86AssemblerPartI/config.json +83 -0
- package/config/hard/Eighty86AssemblerPartI/input/01 - Simple program.txt +6 -0
- package/config/hard/Eighty86AssemblerPartI/input/02 - Unknown command.txt +2 -0
- package/config/hard/Eighty86AssemblerPartI/input/03 - Invalid expression or argument.txt +3 -0
- package/config/hard/Eighty86AssemblerPartI/input/04 - Invalid operand.txt +4 -0
- package/config/hard/Eighty86AssemblerPartI/input/05 - Invalid number of arguments.txt +2 -0
- package/config/hard/Eighty86AssemblerPartI/input/06 - Overflow.txt +2 -0
- package/config/hard/Eighty86AssemblerPartI/input/07 - Invalid character.txt +5 -0
- package/config/hard/Eighty86AssemblerPartI/input/08 - Invalid character sequence.txt +3 -0
- package/config/hard/Eighty86AssemblerPartI/input/09 - Strong parser.txt +9 -0
- package/config/hard/Eighty86AssemblerPartI/input/10 - Hello.txt +24 -0
- package/config/hard/Eighty86AssemblerPartI/input/11 - Let/342/200/231s mov.txt" +25 -0
- package/config/hard/Eighty86AssemblerPartI/input/12 - Encoding.txt +17 -0
- package/config/hard/Eighty86AssemblerPartI/input/13 - Add a bit.txt +21 -0
- package/config/hard/Eighty86AssemblerPartI/input/14 - Invalid hex number.txt +5 -0
- package/config/hard/Eighty86AssemblerPartI/input/15 - Add again.txt +12 -0
- package/config/hard/Eighty86AssemblerPartI/output/01 - Simple program.txt +5 -0
- package/config/hard/Eighty86AssemblerPartI/output/02 - Unknown command.txt +1 -0
- package/config/hard/Eighty86AssemblerPartI/output/03 - Invalid expression or argument.txt +1 -0
- package/config/hard/Eighty86AssemblerPartI/output/04 - Invalid operand.txt +1 -0
- package/config/hard/Eighty86AssemblerPartI/output/05 - Invalid number of arguments.txt +1 -0
- package/config/hard/Eighty86AssemblerPartI/output/06 - Overflow.txt +1 -0
- package/config/hard/Eighty86AssemblerPartI/output/07 - Invalid character.txt +1 -0
- package/config/hard/Eighty86AssemblerPartI/output/08 - Invalid character sequence.txt +1 -0
- package/config/hard/Eighty86AssemblerPartI/output/09 - Strong parser.txt +8 -0
- package/config/hard/Eighty86AssemblerPartI/output/10 - Hello.txt +23 -0
- package/config/hard/Eighty86AssemblerPartI/output/11 - Let/342/200/231s mov.txt" +24 -0
- package/config/hard/Eighty86AssemblerPartI/output/12 - Encoding.txt +16 -0
- package/config/hard/Eighty86AssemblerPartI/output/13 - Add a bit.txt +20 -0
- package/config/hard/Eighty86AssemblerPartI/output/14 - Invalid hex number.txt +1 -0
- package/config/hard/Eighty86AssemblerPartI/output/15 - Add again.txt +11 -0
- package/config/hard/EinsteinsRiddleSolver/code/CGCode.js +18 -0
- package/config/hard/EinsteinsRiddleSolver/code/CGCode.php +20 -0
- package/config/hard/EinsteinsRiddleSolver/config.json +43 -0
- package/config/hard/EinsteinsRiddleSolver/input/01 - 4 x4 simple.txt +21 -0
- package/config/hard/EinsteinsRiddleSolver/input/02 - 4 x 5 medium.txt +29 -0
- package/config/hard/EinsteinsRiddleSolver/input/03 - 7 x 6 Hard.txt +46 -0
- package/config/hard/EinsteinsRiddleSolver/input/04 - 5 x 5 Medium.txt +29 -0
- package/config/hard/EinsteinsRiddleSolver/input/05 - 2 x 2 Trivial.txt +5 -0
- package/config/hard/EinsteinsRiddleSolver/input/06 - 2 x 1 Simple.txt +4 -0
- package/config/hard/EinsteinsRiddleSolver/input/07 - 1 x 2 Simple.txt +3 -0
- package/config/hard/EinsteinsRiddleSolver/output/01 - 4 x4 simple.txt +4 -0
- package/config/hard/EinsteinsRiddleSolver/output/02 - 4 x 5 medium.txt +4 -0
- package/config/hard/EinsteinsRiddleSolver/output/03 - 7 x 6 Hard.txt +7 -0
- package/config/hard/EinsteinsRiddleSolver/output/04 - 5 x 5 Medium.txt +5 -0
- package/config/hard/EinsteinsRiddleSolver/output/05 - 2 x 2 Trivial.txt +2 -0
- package/config/hard/EinsteinsRiddleSolver/output/06 - 2 x 1 Simple.txt +2 -0
- package/config/hard/EinsteinsRiddleSolver/output/07 - 1 x 2 Simple.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/code/CGCode.js +6 -0
- package/config/hard/FactorialsOfPrimesDecomposition/code/CGCode.php +7 -0
- package/config/hard/FactorialsOfPrimesDecomposition/config.json +38 -0
- package/config/hard/FactorialsOfPrimesDecomposition/input/01 - Pure factorial.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/input/02 - Small integer.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/input/03 - Power of factorial.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/input/04 - Bigger integer.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/input/05 - Inverse of factorial.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/input/06 - Fraction.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/output/01 - Pure factorial.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/output/02 - Small integer.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/output/03 - Power of factorial.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/output/04 - Bigger integer.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/output/05 - Inverse of factorial.txt +1 -0
- package/config/hard/FactorialsOfPrimesDecomposition/output/06 - Fraction.txt +1 -0
- package/config/hard/HerMajestysWellSharedSecret/code/CGCode.js +11 -0
- package/config/hard/HerMajestysWellSharedSecret/code/CGCode.php +11 -0
- package/config/hard/HerMajestysWellSharedSecret/config.json +48 -0
- package/config/hard/HerMajestysWellSharedSecret/input/01 - EXAMPLE.txt +3 -0
- package/config/hard/HerMajestysWellSharedSecret/input/02 - INTEL #1.txt +3 -0
- package/config/hard/HerMajestysWellSharedSecret/input/03 - INTEL #2.txt +4 -0
- package/config/hard/HerMajestysWellSharedSecret/input/04 - INTEL #3.txt +9 -0
- package/config/hard/HerMajestysWellSharedSecret/input/05 - INTEL #4.txt +6 -0
- package/config/hard/HerMajestysWellSharedSecret/input/06 - INTEL #5.txt +7 -0
- package/config/hard/HerMajestysWellSharedSecret/input/07 - INTEL #6.txt +9 -0
- package/config/hard/HerMajestysWellSharedSecret/input/08 - INTEL #7.txt +9 -0
- package/config/hard/HerMajestysWellSharedSecret/output/01 - EXAMPLE.txt +1 -0
- package/config/hard/HerMajestysWellSharedSecret/output/02 - INTEL #1.txt +1 -0
- package/config/hard/HerMajestysWellSharedSecret/output/03 - INTEL #2.txt +1 -0
- package/config/hard/HerMajestysWellSharedSecret/output/04 - INTEL #3.txt +1 -0
- package/config/hard/HerMajestysWellSharedSecret/output/05 - INTEL #4.txt +1 -0
- package/config/hard/HerMajestysWellSharedSecret/output/06 - INTEL #5.txt +1 -0
- package/config/hard/HerMajestysWellSharedSecret/output/07 - INTEL #6.txt +1 -0
- package/config/hard/HerMajestysWellSharedSecret/output/08 - INTEL #7.txt +1 -0
- package/config/hard/HexagonalMazePart2/code/CGCode.js +11 -0
- package/config/hard/HexagonalMazePart2/code/CGCode.php +11 -0
- package/config/hard/HexagonalMazePart2/config.json +68 -0
- package/config/hard/HexagonalMazePart2/input/01 - Example.txt +5 -0
- package/config/hard/HexagonalMazePart2/input/02 - Need the key.txt +11 -0
- package/config/hard/HexagonalMazePart2/input/03 - Choose shortest.txt +11 -0
- package/config/hard/HexagonalMazePart2/input/04 - Shortest with sliding.txt +6 -0
- package/config/hard/HexagonalMazePart2/input/05 - Sliding junction.txt +11 -0
- package/config/hard/HexagonalMazePart2/input/06 - Sliding until wall.txt +11 -0
- package/config/hard/HexagonalMazePart2/input/07 - Sliding or not sliding, that is the junction.txt +7 -0
- package/config/hard/HexagonalMazePart2/input/08 - Crazy doors.txt +7 -0
- package/config/hard/HexagonalMazePart2/input/09 - Visited or not.txt +9 -0
- package/config/hard/HexagonalMazePart2/input/10 - Skating rink.txt +31 -0
- package/config/hard/HexagonalMazePart2/input/11 - Skating rink with keys.txt +31 -0
- package/config/hard/HexagonalMazePart2/input/12 - Bonus test.txt +13 -0
- package/config/hard/HexagonalMazePart2/output/01 - Example.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/02 - Need the key.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/03 - Choose shortest.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/04 - Shortest with sliding.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/05 - Sliding junction.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/06 - Sliding until wall.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/07 - Sliding or not sliding, that is the junction.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/08 - Crazy doors.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/09 - Visited or not.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/10 - Skating rink.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/11 - Skating rink with keys.txt +1 -0
- package/config/hard/HexagonalMazePart2/output/12 - Bonus test.txt +1 -0
- package/config/hard/MagicCountOfNumbers/code/CGCode.js +12 -0
- package/config/hard/MagicCountOfNumbers/code/CGCode.php +12 -0
- package/config/hard/MagicCountOfNumbers/config.json +48 -0
- package/config/hard/MagicCountOfNumbers/input/01 - test 1 One prime.txt +2 -0
- package/config/hard/MagicCountOfNumbers/input/02 - test 2 Two primes.txt +2 -0
- package/config/hard/MagicCountOfNumbers/input/03 - test 3 Four primes.txt +2 -0
- package/config/hard/MagicCountOfNumbers/input/04 - test 4 Big n.txt +2 -0
- package/config/hard/MagicCountOfNumbers/input/05 - test 5 Six primes.txt +2 -0
- package/config/hard/MagicCountOfNumbers/input/06 - test 6 Ten primes.txt +2 -0
- package/config/hard/MagicCountOfNumbers/input/07 - test 7 Big n and ten primes.txt +2 -0
- package/config/hard/MagicCountOfNumbers/input/08 - test 8 Ultimate test.txt +2 -0
- package/config/hard/MagicCountOfNumbers/output/01 - test 1 One prime.txt +1 -0
- package/config/hard/MagicCountOfNumbers/output/02 - test 2 Two primes.txt +1 -0
- package/config/hard/MagicCountOfNumbers/output/03 - test 3 Four primes.txt +1 -0
- package/config/hard/MagicCountOfNumbers/output/04 - test 4 Big n.txt +1 -0
- package/config/hard/MagicCountOfNumbers/output/05 - test 5 Six primes.txt +1 -0
- package/config/hard/MagicCountOfNumbers/output/06 - test 6 Ten primes.txt +1 -0
- package/config/hard/MagicCountOfNumbers/output/07 - test 7 Big n and ten primes.txt +1 -0
- package/config/hard/MagicCountOfNumbers/output/08 - test 8 Ultimate test.txt +1 -0
- package/config/hard/MapColorations/code/CGCode.js +17 -0
- package/config/hard/MapColorations/code/CGCode.php +19 -0
- package/config/hard/MapColorations/config.json +28 -0
- package/config/hard/MapColorations/input/01 - Small graph.txt +14 -0
- package/config/hard/MapColorations/input/02 - European countries.txt +20 -0
- package/config/hard/MapColorations/input/03 - Large number of colors.txt +9 -0
- package/config/hard/MapColorations/input/04 - USA.txt +29 -0
- package/config/hard/MapColorations/output/01 - Small graph.txt +8 -0
- package/config/hard/MapColorations/output/02 - European countries.txt +5 -0
- package/config/hard/MapColorations/output/03 - Large number of colors.txt +4 -0
- package/config/hard/MapColorations/output/04 - USA.txt +5 -0
- package/config/hard/MarsColonization/code/CGCode.js +13 -0
- package/config/hard/MarsColonization/code/CGCode.php +11 -0
- package/config/hard/MarsColonization/config.json +58 -0
- package/config/hard/MarsColonization/input/01 - Example.txt +6 -0
- package/config/hard/MarsColonization/input/02 - Lonely remote site.txt +6 -0
- package/config/hard/MarsColonization/input/03 - Pentagon.txt +6 -0
- package/config/hard/MarsColonization/input/04 - 10 Stations.txt +11 -0
- package/config/hard/MarsColonization/input/05 - 20 Stations.txt +21 -0
- package/config/hard/MarsColonization/input/06 - 50 Stations.txt +52 -0
- package/config/hard/MarsColonization/input/07 - 75 Stations.txt +76 -0
- package/config/hard/MarsColonization/input/08 - 100 Stations.txt +101 -0
- package/config/hard/MarsColonization/input/09 - Many satellites links.txt +101 -0
- package/config/hard/MarsColonization/input/10 - Not enough satellite links.txt +101 -0
- package/config/hard/MarsColonization/output/01 - Example.txt +1 -0
- package/config/hard/MarsColonization/output/02 - Lonely remote site.txt +1 -0
- package/config/hard/MarsColonization/output/03 - Pentagon.txt +1 -0
- package/config/hard/MarsColonization/output/04 - 10 Stations.txt +1 -0
- package/config/hard/MarsColonization/output/05 - 20 Stations.txt +1 -0
- package/config/hard/MarsColonization/output/06 - 50 Stations.txt +1 -0
- package/config/hard/MarsColonization/output/07 - 75 Stations.txt +1 -0
- package/config/hard/MarsColonization/output/08 - 100 Stations.txt +1 -0
- package/config/hard/MarsColonization/output/09 - Many satellites links.txt +1 -0
- package/config/hard/MarsColonization/output/10 - Not enough satellite links.txt +1 -0
- package/config/hard/MusicalIntervals/code/CGCode.js +13 -0
- package/config/hard/MusicalIntervals/code/CGCode.php +14 -0
- package/config/hard/MusicalIntervals/config.json +48 -0
- package/config/hard/MusicalIntervals/input/01 - Example.txt +3 -0
- package/config/hard/MusicalIntervals/input/02 - Diatonic C Major.txt +50 -0
- package/config/hard/MusicalIntervals/input/03 - Diatonic F/342/231/257 Major.txt" +50 -0
- package/config/hard/MusicalIntervals/input/04 - Diatonic A/342/231/255 Major.txt" +50 -0
- package/config/hard/MusicalIntervals/input/05 - Harmonic D Minor.txt +50 -0
- package/config/hard/MusicalIntervals/input/06 - Harmonic F/342/231/257 Minor.txt" +50 -0
- package/config/hard/MusicalIntervals/input/07 - Melodic E Minor.txt +16 -0
- package/config/hard/MusicalIntervals/input/08 - Classical Chromaticism in G.txt +13 -0
- package/config/hard/MusicalIntervals/output/01 - Example.txt +2 -0
- package/config/hard/MusicalIntervals/output/02 - Diatonic C Major.txt +49 -0
- package/config/hard/MusicalIntervals/output/03 - Diatonic F/342/231/257 Major.txt" +49 -0
- package/config/hard/MusicalIntervals/output/04 - Diatonic A/342/231/255 Major.txt" +49 -0
- package/config/hard/MusicalIntervals/output/05 - Harmonic D Minor.txt +49 -0
- package/config/hard/MusicalIntervals/output/06 - Harmonic F/342/231/257 Minor.txt" +49 -0
- package/config/hard/MusicalIntervals/output/07 - Melodic E Minor.txt +15 -0
- package/config/hard/MusicalIntervals/output/08 - Classical Chromaticism in G.txt +12 -0
- package/config/hard/NPearlsNecklace/code/CGCode.js +7 -0
- package/config/hard/NPearlsNecklace/code/CGCode.php +8 -0
- package/config/hard/NPearlsNecklace/config.json +33 -0
- package/config/hard/NPearlsNecklace/input/01 - test 1.txt +2 -0
- package/config/hard/NPearlsNecklace/input/02 - test 2.txt +2 -0
- package/config/hard/NPearlsNecklace/input/03 - test 3.txt +2 -0
- package/config/hard/NPearlsNecklace/input/04 - test 4.txt +2 -0
- package/config/hard/NPearlsNecklace/input/05 - test 5.txt +2 -0
- package/config/hard/NPearlsNecklace/output/01 - test 1.txt +1 -0
- package/config/hard/NPearlsNecklace/output/02 - test 2.txt +1 -0
- package/config/hard/NPearlsNecklace/output/03 - test 3.txt +1 -0
- package/config/hard/NPearlsNecklace/output/04 - test 4.txt +1 -0
- package/config/hard/NPearlsNecklace/output/05 - test 5.txt +1 -0
- package/config/hard/ObsoleteProgramming/code/CGCode.js +9 -0
- package/config/hard/ObsoleteProgramming/code/CGCode.php +11 -0
- package/config/hard/ObsoleteProgramming/config.json +58 -0
- package/config/hard/ObsoleteProgramming/input/01 - Arithmetic test.txt +7 -0
- package/config/hard/ObsoleteProgramming/input/02 - Stack Manipulations.txt +5 -0
- package/config/hard/ObsoleteProgramming/input/03 - /302/253Logic/302/273.txt" +6 -0
- package/config/hard/ObsoleteProgramming/input/04 - Simple function - square.txt +3 -0
- package/config/hard/ObsoleteProgramming/input/05 - Function and test.txt +5 -0
- package/config/hard/ObsoleteProgramming/input/06 - Function calling function and nested if.txt +18 -0
- package/config/hard/ObsoleteProgramming/input/07 - the Queen of functions.txt +6 -0
- package/config/hard/ObsoleteProgramming/input/08 - I have no loop and I must iterate.txt +9 -0
- package/config/hard/ObsoleteProgramming/input/09 - Hello Fibonacci !.txt +7 -0
- package/config/hard/ObsoleteProgramming/input/10 - Integer square root.txt +21 -0
- package/config/hard/ObsoleteProgramming/output/01 - Arithmetic test.txt +6 -0
- package/config/hard/ObsoleteProgramming/output/02 - Stack Manipulations.txt +12 -0
- package/config/hard/ObsoleteProgramming/output/03 - /302/253Logic/302/273.txt" +10 -0
- package/config/hard/ObsoleteProgramming/output/04 - Simple function - square.txt +3 -0
- package/config/hard/ObsoleteProgramming/output/05 - Function and test.txt +4 -0
- package/config/hard/ObsoleteProgramming/output/06 - Function calling function and nested if.txt +8 -0
- package/config/hard/ObsoleteProgramming/output/07 - the Queen of functions.txt +4 -0
- package/config/hard/ObsoleteProgramming/output/08 - I have no loop and I must iterate.txt +18 -0
- package/config/hard/ObsoleteProgramming/output/09 - Hello Fibonacci !.txt +4 -0
- package/config/hard/ObsoleteProgramming/output/10 - Integer square root.txt +4 -0
- package/config/hard/SimonsOracle/code/CGCode.js +12 -0
- package/config/hard/SimonsOracle/code/CGCode.php +12 -0
- package/config/hard/SimonsOracle/config.json +53 -0
- package/config/hard/SimonsOracle/input/01 - Example.txt +6 -0
- package/config/hard/SimonsOracle/input/02 - Repetition.txt +10 -0
- package/config/hard/SimonsOracle/input/03 - Continuation.txt +10 -0
- package/config/hard/SimonsOracle/input/04 - Secrecy.txt +30 -0
- package/config/hard/SimonsOracle/input/05 - Saturation.txt +10 -0
- package/config/hard/SimonsOracle/input/06 - Coincidence.txt +17 -0
- package/config/hard/SimonsOracle/input/07 - Perpetuity.txt +30 -0
- package/config/hard/SimonsOracle/input/08 - Structure.txt +26 -0
- package/config/hard/SimonsOracle/input/09 - Genius.txt +23 -0
- package/config/hard/SimonsOracle/output/01 - Example.txt +6 -0
- package/config/hard/SimonsOracle/output/02 - Repetition.txt +10 -0
- package/config/hard/SimonsOracle/output/03 - Continuation.txt +10 -0
- package/config/hard/SimonsOracle/output/04 - Secrecy.txt +30 -0
- package/config/hard/SimonsOracle/output/05 - Saturation.txt +10 -0
- package/config/hard/SimonsOracle/output/06 - Coincidence.txt +17 -0
- package/config/hard/SimonsOracle/output/07 - Perpetuity.txt +30 -0
- package/config/hard/SimonsOracle/output/08 - Structure.txt +26 -0
- package/config/hard/SimonsOracle/output/09 - Genius.txt +23 -0
- package/config/hard/StrobogrammaticNumbers/code/CGCode.js +7 -0
- package/config/hard/StrobogrammaticNumbers/code/CGCode.php +8 -0
- package/config/hard/StrobogrammaticNumbers/config.json +38 -0
- package/config/hard/StrobogrammaticNumbers/input/01 - Low and Behold.txt +2 -0
- package/config/hard/StrobogrammaticNumbers/input/02 - Tumbling Numbers.txt +2 -0
- package/config/hard/StrobogrammaticNumbers/input/03 - Flipping Out.txt +2 -0
- package/config/hard/StrobogrammaticNumbers/input/04 - Strobo-Mania.txt +2 -0
- package/config/hard/StrobogrammaticNumbers/input/05 - Mega Range.txt +2 -0
- package/config/hard/StrobogrammaticNumbers/input/06 - Just in Case.txt +2 -0
- package/config/hard/StrobogrammaticNumbers/output/01 - Low and Behold.txt +1 -0
- package/config/hard/StrobogrammaticNumbers/output/02 - Tumbling Numbers.txt +1 -0
- package/config/hard/StrobogrammaticNumbers/output/03 - Flipping Out.txt +1 -0
- package/config/hard/StrobogrammaticNumbers/output/04 - Strobo-Mania.txt +1 -0
- package/config/hard/StrobogrammaticNumbers/output/05 - Mega Range.txt +1 -0
- package/config/hard/StrobogrammaticNumbers/output/06 - Just in Case.txt +1 -0
- package/config/hard/TakuzuSolver/code/CGCode.js +11 -0
- package/config/hard/TakuzuSolver/code/CGCode.php +14 -0
- package/config/hard/TakuzuSolver/config.json +38 -0
- package/config/hard/TakuzuSolver/input/01 - Test 4x4.txt +5 -0
- package/config/hard/TakuzuSolver/input/02 - Test 6x6.txt +7 -0
- package/config/hard/TakuzuSolver/input/03 - Test 8x8.txt +9 -0
- package/config/hard/TakuzuSolver/input/04 - Test 10x10.txt +11 -0
- package/config/hard/TakuzuSolver/input/05 - Test 12x12.txt +13 -0
- package/config/hard/TakuzuSolver/input/06 - Test 8x8 Hard.txt +9 -0
- package/config/hard/TakuzuSolver/output/01 - Test 4x4.txt +4 -0
- package/config/hard/TakuzuSolver/output/02 - Test 6x6.txt +6 -0
- package/config/hard/TakuzuSolver/output/03 - Test 8x8.txt +8 -0
- package/config/hard/TakuzuSolver/output/04 - Test 10x10.txt +10 -0
- package/config/hard/TakuzuSolver/output/05 - Test 12x12.txt +12 -0
- package/config/hard/TakuzuSolver/output/06 - Test 8x8 Hard.txt +8 -0
- package/config/hard/ThomasAndTheFreightCars/code/CGCode.js +10 -0
- package/config/hard/ThomasAndTheFreightCars/code/CGCode.php +12 -0
- package/config/hard/ThomasAndTheFreightCars/config.json +38 -0
- package/config/hard/ThomasAndTheFreightCars/input/01 - Sample.txt +2 -0
- package/config/hard/ThomasAndTheFreightCars/input/02 - 10 Cars.txt +2 -0
- package/config/hard/ThomasAndTheFreightCars/input/03 - 20 Cars.txt +2 -0
- package/config/hard/ThomasAndTheFreightCars/input/04 - 40 Cars.txt +2 -0
- package/config/hard/ThomasAndTheFreightCars/input/05 - 60 Cars.txt +2 -0
- package/config/hard/ThomasAndTheFreightCars/input/06 - 100 Cars.txt +2 -0
- package/config/hard/ThomasAndTheFreightCars/output/01 - Sample.txt +1 -0
- package/config/hard/ThomasAndTheFreightCars/output/02 - 10 Cars.txt +1 -0
- package/config/hard/ThomasAndTheFreightCars/output/03 - 20 Cars.txt +1 -0
- package/config/hard/ThomasAndTheFreightCars/output/04 - 40 Cars.txt +1 -0
- package/config/hard/ThomasAndTheFreightCars/output/05 - 60 Cars.txt +1 -0
- package/config/hard/ThomasAndTheFreightCars/output/06 - 100 Cars.txt +1 -0
- package/config/hard/TuringMachine/code/CGCode.js +14 -0
- package/config/hard/TuringMachine/code/CGCode.php +13 -0
- package/config/hard/TuringMachine/config.json +33 -0
- package/config/hard/TuringMachine/input/01 - Simple.txt +5 -0
- package/config/hard/TuringMachine/input/02 - Busy beaver.txt +6 -0
- package/config/hard/TuringMachine/input/03 - Out of bounds right.txt +7 -0
- package/config/hard/TuringMachine/input/04 - Out of bounds left.txt +8 -0
- package/config/hard/TuringMachine/input/05 - Busy beaver + copy.txt +12 -0
- package/config/hard/TuringMachine/output/01 - Simple.txt +3 -0
- package/config/hard/TuringMachine/output/02 - Busy beaver.txt +3 -0
- package/config/hard/TuringMachine/output/03 - Out of bounds right.txt +3 -0
- package/config/hard/TuringMachine/output/04 - Out of bounds left.txt +3 -0
- package/config/hard/TuringMachine/output/05 - Busy beaver + copy.txt +3 -0
- package/config/hard/TwentyFourTheLongGame/code/CGCode.js +10 -0
- package/config/hard/TwentyFourTheLongGame/code/CGCode.php +7 -0
- package/config/hard/TwentyFourTheLongGame/config.json +98 -0
- package/config/hard/TwentyFourTheLongGame/input/01 - One solution.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/02 - Addition.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/03 - Subtraction.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/04 - No solution.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/05 - Two solutions.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/06 - Bigger numbers.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/07 - Multiple options.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/08 - Even more options.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/09 - One included.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/10 - Division.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/11 - A rounding matter.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/12 - The right position.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/13 - Subexpression sorting.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/14 - String sorting.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/15 - Too much.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/16 - 24 game.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/17 - Beyond the 24 game.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/input/18 - Stop! This is absurd..txt +1 -0
- package/config/hard/TwentyFourTheLongGame/output/01 - One solution.txt +2 -0
- package/config/hard/TwentyFourTheLongGame/output/02 - Addition.txt +2 -0
- package/config/hard/TwentyFourTheLongGame/output/03 - Subtraction.txt +2 -0
- package/config/hard/TwentyFourTheLongGame/output/04 - No solution.txt +1 -0
- package/config/hard/TwentyFourTheLongGame/output/05 - Two solutions.txt +3 -0
- package/config/hard/TwentyFourTheLongGame/output/06 - Bigger numbers.txt +2 -0
- package/config/hard/TwentyFourTheLongGame/output/07 - Multiple options.txt +8 -0
- package/config/hard/TwentyFourTheLongGame/output/08 - Even more options.txt +13 -0
- package/config/hard/TwentyFourTheLongGame/output/09 - One included.txt +5 -0
- package/config/hard/TwentyFourTheLongGame/output/10 - Division.txt +7 -0
- package/config/hard/TwentyFourTheLongGame/output/11 - A rounding matter.txt +2 -0
- package/config/hard/TwentyFourTheLongGame/output/12 - The right position.txt +6 -0
- package/config/hard/TwentyFourTheLongGame/output/13 - Subexpression sorting.txt +9 -0
- package/config/hard/TwentyFourTheLongGame/output/14 - String sorting.txt +9 -0
- package/config/hard/TwentyFourTheLongGame/output/15 - Too much.txt +23 -0
- package/config/hard/TwentyFourTheLongGame/output/16 - 24 game.txt +19 -0
- package/config/hard/TwentyFourTheLongGame/output/17 - Beyond the 24 game.txt +49 -0
- package/config/hard/TwentyFourTheLongGame/output/18 - Stop! This is absurd..txt +93 -0
- package/config/hard/ZerglingRush/code/CGCode.js +11 -0
- package/config/hard/ZerglingRush/code/CGCode.php +11 -0
- package/config/hard/ZerglingRush/config.json +43 -0
- package/config/hard/ZerglingRush/input/01 - Lone building.txt +6 -0
- package/config/hard/ZerglingRush/input/02 - Walled off.txt +6 -0
- package/config/hard/ZerglingRush/input/03 - Blocked ramp.txt +14 -0
- package/config/hard/ZerglingRush/input/04 - Misclick.txt +12 -0
- package/config/hard/ZerglingRush/input/05 - Hey, that/342/200/231s cheating!.txt" +9 -0
- package/config/hard/ZerglingRush/input/06 - CG.txt +10 -0
- package/config/hard/ZerglingRush/input/07 - Lift off.txt +9 -0
- package/config/hard/ZerglingRush/output/01 - Lone building.txt +5 -0
- package/config/hard/ZerglingRush/output/02 - Walled off.txt +5 -0
- package/config/hard/ZerglingRush/output/03 - Blocked ramp.txt +13 -0
- package/config/hard/ZerglingRush/output/04 - Misclick.txt +11 -0
- package/config/hard/ZerglingRush/output/05 - Hey, that/342/200/231s cheating!.txt" +8 -0
- package/config/hard/ZerglingRush/output/06 - CG.txt +9 -0
- package/config/hard/ZerglingRush/output/07 - Lift off.txt +8 -0
- package/config/medium/CatalyticMicroparticles/code/CGCode.js +15 -0
- package/config/medium/CatalyticMicroparticles/code/CGCode.php +15 -0
- package/config/medium/CatalyticMicroparticles/config.json +68 -0
- package/config/medium/CatalyticMicroparticles/input/01 - Example.txt +6 -0
- package/config/medium/CatalyticMicroparticles/input/02 - Solid cube.txt +6 -0
- package/config/medium/CatalyticMicroparticles/input/03 - Oblong prism.txt +7 -0
- package/config/medium/CatalyticMicroparticles/input/04 - Indentations.txt +6 -0
- package/config/medium/CatalyticMicroparticles/input/05 - Critical flaw.txt +8 -0
- package/config/medium/CatalyticMicroparticles/input/06 - Substellar.txt +12 -0
- package/config/medium/CatalyticMicroparticles/input/07 - Knobby surface.txt +10 -0
- package/config/medium/CatalyticMicroparticles/input/08 - Spheroid.txt +12 -0
- package/config/medium/CatalyticMicroparticles/input/09 - Channel.txt +10 -0
- package/config/medium/CatalyticMicroparticles/input/10 - Dumbell.txt +20 -0
- package/config/medium/CatalyticMicroparticles/input/11 - Lattice.txt +20 -0
- package/config/medium/CatalyticMicroparticles/input/12 - Rings.txt +12 -0
- package/config/medium/CatalyticMicroparticles/output/01 - Example.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/02 - Solid cube.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/03 - Oblong prism.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/04 - Indentations.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/05 - Critical flaw.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/06 - Substellar.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/07 - Knobby surface.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/08 - Spheroid.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/09 - Channel.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/10 - Dumbell.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/11 - Lattice.txt +1 -0
- package/config/medium/CatalyticMicroparticles/output/12 - Rings.txt +1 -0
- package/config/medium/LogicGatesDetective/code/CGCode.js +11 -0
- package/config/medium/LogicGatesDetective/code/CGCode.php +13 -0
- package/config/medium/LogicGatesDetective/config.json +48 -0
- package/config/medium/LogicGatesDetective/input/01 - example.txt +8 -0
- package/config/medium/LogicGatesDetective/input/02 - easy.txt +6 -0
- package/config/medium/LogicGatesDetective/input/03 - ignore some nodes.txt +6 -0
- package/config/medium/LogicGatesDetective/input/04 - and.txt +10 -0
- package/config/medium/LogicGatesDetective/input/05 - or.txt +11 -0
- package/config/medium/LogicGatesDetective/input/06 - xor.txt +14 -0
- package/config/medium/LogicGatesDetective/input/07 - large adder.txt +225 -0
- package/config/medium/LogicGatesDetective/input/08 - large adder reverse input.txt +225 -0
- package/config/medium/LogicGatesDetective/output/01 - example.txt +1 -0
- package/config/medium/LogicGatesDetective/output/02 - easy.txt +1 -0
- package/config/medium/LogicGatesDetective/output/03 - ignore some nodes.txt +1 -0
- package/config/medium/LogicGatesDetective/output/04 - and.txt +1 -0
- package/config/medium/LogicGatesDetective/output/05 - or.txt +1 -0
- package/config/medium/LogicGatesDetective/output/06 - xor.txt +1 -0
- package/config/medium/LogicGatesDetective/output/07 - large adder.txt +1 -0
- package/config/medium/LogicGatesDetective/output/08 - large adder reverse input.txt +1 -0
- package/config/medium/MrsKnuthPartI/code/CGCode.js +10 -0
- package/config/medium/MrsKnuthPartI/code/CGCode.php +12 -0
- package/config/medium/MrsKnuthPartI/config.json +43 -0
- package/config/medium/MrsKnuthPartI/input/01 - One Easy Day.txt +5 -0
- package/config/medium/MrsKnuthPartI/input/02 - One Long Day.txt +10 -0
- package/config/medium/MrsKnuthPartI/input/03 - Two-Day Workweek.txt +14 -0
- package/config/medium/MrsKnuthPartI/input/04 - Three Reasonable Days.txt +17 -0
- package/config/medium/MrsKnuthPartI/input/05 - Three Long Days.txt +23 -0
- package/config/medium/MrsKnuthPartI/input/06 - Four Moderate Days.txt +22 -0
- package/config/medium/MrsKnuthPartI/input/07 - Five Long Days.txt +42 -0
- package/config/medium/MrsKnuthPartI/output/01 - One Easy Day.txt +10 -0
- package/config/medium/MrsKnuthPartI/output/02 - One Long Day.txt +10 -0
- package/config/medium/MrsKnuthPartI/output/03 - Two-Day Workweek.txt +10 -0
- package/config/medium/MrsKnuthPartI/output/04 - Three Reasonable Days.txt +10 -0
- package/config/medium/MrsKnuthPartI/output/05 - Three Long Days.txt +10 -0
- package/config/medium/MrsKnuthPartI/output/06 - Four Moderate Days.txt +10 -0
- package/config/medium/MrsKnuthPartI/output/07 - Five Long Days.txt +10 -0
- package/config/medium/ParseSQLQueries/code/CGCode.js +12 -0
- package/config/medium/ParseSQLQueries/code/CGCode.php +14 -0
- package/config/medium/ParseSQLQueries/config.json +33 -0
- package/config/{easy/ParseSQLQueries/input/02 - select from where.txt → medium/ParseSQLQueries/input/02 - Select from where.txt } +1 -1
- package/config/{easy/ParseSQLQueries/input/04 - slightly bigger table.txt → medium/ParseSQLQueries/input/05 - Slightly more advanced.txt } +1 -1
- package/config/medium/ParseSQLQueries/output/05 - Slightly more advanced.txt +3 -0
- package/config/medium/ReconstructATree/code/CGCode.js +7 -0
- package/config/medium/ReconstructATree/code/CGCode.php +8 -0
- package/config/medium/ReconstructATree/config.json +48 -0
- package/config/medium/ReconstructATree/input/01 - test 1.txt +2 -0
- package/config/medium/ReconstructATree/input/02 - test 2.txt +2 -0
- package/config/medium/ReconstructATree/input/03 - test 3.txt +2 -0
- package/config/medium/ReconstructATree/input/04 - test 4.txt +2 -0
- package/config/medium/ReconstructATree/input/05 - test 5.txt +2 -0
- package/config/medium/ReconstructATree/input/06 - test 6.txt +2 -0
- package/config/medium/ReconstructATree/input/07 - test 7.txt +2 -0
- package/config/medium/ReconstructATree/input/08 - test 8.txt +2 -0
- package/config/medium/ReconstructATree/output/01 - test 1.txt +1 -0
- package/config/medium/ReconstructATree/output/02 - test 2.txt +1 -0
- package/config/medium/ReconstructATree/output/03 - test 3.txt +1 -0
- package/config/medium/ReconstructATree/output/04 - test 4.txt +1 -0
- package/config/medium/ReconstructATree/output/05 - test 5.txt +1 -0
- package/config/medium/ReconstructATree/output/06 - test 6.txt +1 -0
- package/config/medium/ReconstructATree/output/07 - test 7.txt +1 -0
- package/config/medium/ReconstructATree/output/08 - test 8.txt +1 -0
- package/config/medium/TheSovereignsGame/code/CGCode.js +12 -0
- package/config/medium/TheSovereignsGame/code/CGCode.php +12 -0
- package/config/medium/TheSovereignsGame/config.json +53 -0
- package/config/medium/TheSovereignsGame/input/01 - Simple.txt +6 -0
- package/config/medium/TheSovereignsGame/input/02 - Slightly More Piles.txt +17 -0
- package/config/medium/TheSovereignsGame/input/03 - Replenishment.txt +5 -0
- package/config/medium/TheSovereignsGame/input/04 - Lots of Replenishment.txt +7 -0
- package/config/medium/TheSovereignsGame/input/05 - Lots of Resource Piles.txt +752 -0
- package/config/medium/TheSovereignsGame/input/06 - Lots Lots of Resource Piles.txt +1253 -0
- package/config/medium/TheSovereignsGame/input/07 - Large Resource Piles with Lots of Turns.txt +1152 -0
- package/config/medium/TheSovereignsGame/input/08 - Sovereign/342/200/231s Challenge.txt" +1102 -0
- package/config/medium/TheSovereignsGame/input/09 - Sovereign/342/200/231s Ultimate Challenge.txt" +1102 -0
- package/config/medium/TheSovereignsGame/output/01 - Simple.txt +1 -0
- package/config/medium/TheSovereignsGame/output/02 - Slightly More Piles.txt +1 -0
- package/config/medium/TheSovereignsGame/output/03 - Replenishment.txt +1 -0
- package/config/medium/TheSovereignsGame/output/04 - Lots of Replenishment.txt +1 -0
- package/config/medium/TheSovereignsGame/output/05 - Lots of Resource Piles.txt +1 -0
- package/config/medium/TheSovereignsGame/output/06 - Lots Lots of Resource Piles.txt +1 -0
- package/config/medium/TheSovereignsGame/output/07 - Large Resource Piles with Lots of Turns.txt +1 -0
- package/config/medium/TheSovereignsGame/output/08 - Sovereign/342/200/231s Challenge.txt" +1 -0
- package/config/medium/TheSovereignsGame/output/09 - Sovereign/342/200/231s Ultimate Challenge.txt" +1 -0
- package/package.json +1 -1
- package/config/easy/ParseSQLQueries/code/CGCode.js +0 -11
- package/config/easy/ParseSQLQueries/code/CGCode.php +0 -13
- package/config/easy/ParseSQLQueries/config.json +0 -33
- package/config/easy/ParseSQLQueries/output/04 - slightly bigger table.txt +0 -2
- package/config/{easy → medium}/ParseSQLQueries/input/01 - select all.txt +0 -0
- package/config/{easy/ParseSQLQueries/input/05 - titanic table.txt → medium/ParseSQLQueries/input/03 - Order by ascending.txt} +0 -0
- package/config/{easy/ParseSQLQueries/input/03 - ORDER BY DESC.txt → medium/ParseSQLQueries/input/04 - Order by descending.txt } +2 -2
- /package/config/{easy → medium}/ParseSQLQueries/output/01 - select all.txt +0 -0
- /package/config/{easy/ParseSQLQueries/output/02 - select from where.txt → medium/ParseSQLQueries/output/02 - Select from where.txt} +0 -0
- /package/config/{easy/ParseSQLQueries/output/05 - titanic table.txt → medium/ParseSQLQueries/output/03 - Order by ascending.txt} +0 -0
- /package/config/{easy/ParseSQLQueries/output/03 - ORDER BY DESC.txt → medium/ParseSQLQueries/output/04 - Order by descending.txt} +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
6
|
@@ -0,0 +1 @@
|
|
1
|
+
204
|
@@ -0,0 +1 @@
|
|
1
|
+
617
|
@@ -0,0 +1 @@
|
|
1
|
+
1262
|
@@ -0,0 +1 @@
|
|
1
|
+
1503
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?php
|
2
|
+
fscanf(STDIN, "%d", $N);
|
3
|
+
for ($i = 0; $i < $N; $i++)
|
4
|
+
{
|
5
|
+
$LINE = stream_get_line(STDIN, 100 + 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("answer\n");
|
@@ -0,0 +1,83 @@
|
|
1
|
+
{
|
2
|
+
"path": "hard/Eighty86AssemblerPartI",
|
3
|
+
"name": "8086 Assembler, part I",
|
4
|
+
"alphanumName": "Eighty86AssemblerPartI",
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/8086-assembler-part-i",
|
6
|
+
"tests": [
|
7
|
+
{
|
8
|
+
"name": "Simple program",
|
9
|
+
"alphanumName": "SimpleProgram",
|
10
|
+
"file": "01 - Simple program.txt"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"name": "Unknown command",
|
14
|
+
"alphanumName": "UnknownCommand",
|
15
|
+
"file": "02 - Unknown command.txt"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "Invalid expression or argument",
|
19
|
+
"alphanumName": "InvalidExpressionOrArgument",
|
20
|
+
"file": "03 - Invalid expression or argument.txt"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": "Invalid operand",
|
24
|
+
"alphanumName": "InvalidOperand",
|
25
|
+
"file": "04 - Invalid operand.txt"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "Invalid number of arguments",
|
29
|
+
"alphanumName": "InvalidNumberOfArguments",
|
30
|
+
"file": "05 - Invalid number of arguments.txt"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"name": "Overflow",
|
34
|
+
"alphanumName": "Overflow",
|
35
|
+
"file": "06 - Overflow.txt"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"name": "Invalid character",
|
39
|
+
"alphanumName": "InvalidCharacter",
|
40
|
+
"file": "07 - Invalid character.txt"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"name": "Invalid character sequence",
|
44
|
+
"alphanumName": "InvalidCharacterSequence",
|
45
|
+
"file": "08 - Invalid character sequence.txt"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"name": "Strong parser",
|
49
|
+
"alphanumName": "StrongParser",
|
50
|
+
"file": "09 - Strong parser.txt"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"name": "Hello",
|
54
|
+
"alphanumName": "Hello",
|
55
|
+
"file": "10 - Hello.txt"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"name": "Let’s mov",
|
59
|
+
"alphanumName": "LetsMov",
|
60
|
+
"file": "11 - Let’s mov.txt"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"name": "Encoding",
|
64
|
+
"alphanumName": "Encoding",
|
65
|
+
"file": "12 - Encoding.txt"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"name": "Add a bit",
|
69
|
+
"alphanumName": "AddABit",
|
70
|
+
"file": "13 - Add a bit.txt"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"name": "Invalid hex number",
|
74
|
+
"alphanumName": "InvalidHexNumber",
|
75
|
+
"file": "14 - Invalid hex number.txt"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"name": "Add again",
|
79
|
+
"alphanumName": "AddAgain",
|
80
|
+
"file": "15 - Add again.txt"
|
81
|
+
}
|
82
|
+
]
|
83
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
23
|
2
|
+
; ---------------------------------------
|
3
|
+
; Hello
|
4
|
+
; ---------------------------------------
|
5
|
+
|
6
|
+
;
|
7
|
+
; Display Hello word on screen with interrupt 21h
|
8
|
+
;
|
9
|
+
|
10
|
+
mov dl, 'H'
|
11
|
+
mov ah, 2
|
12
|
+
int 21h
|
13
|
+
|
14
|
+
MOV DL, 'e'
|
15
|
+
INT 21h
|
16
|
+
|
17
|
+
mov dl, 'l'
|
18
|
+
int 21h
|
19
|
+
|
20
|
+
mov dl, 'l'
|
21
|
+
int 21h
|
22
|
+
|
23
|
+
mov dl, 'o'
|
24
|
+
int 21h
|
@@ -0,0 +1,25 @@
|
|
1
|
+
24
|
2
|
+
mov ax, -1
|
3
|
+
mov bx, 128
|
4
|
+
mov cx, 215h
|
5
|
+
mov dx, 10010001b
|
6
|
+
mov ax, cx
|
7
|
+
mov dx, bx
|
8
|
+
mov bx, -32768
|
9
|
+
|
10
|
+
mov ah, 010
|
11
|
+
mov al, 255
|
12
|
+
mov bh, 0x01
|
13
|
+
mov cl, 1001b
|
14
|
+
mov dh, '~'
|
15
|
+
mov ah, cl
|
16
|
+
|
17
|
+
mov ax, 'b'-'h'
|
18
|
+
mov bx, 3 * ( 8 - 7 / 2 )
|
19
|
+
mov cx, ( 1001000b+12h-0x03 ) * 'a'
|
20
|
+
mov dx, $
|
21
|
+
mov ax, 5h + $
|
22
|
+
mov ax, -10h + 'A'
|
23
|
+
|
24
|
+
mov dl, 0ah / 2
|
25
|
+
mov cl, 100 - 0ch + 0dh
|
@@ -0,0 +1,17 @@
|
|
1
|
+
16
|
2
|
+
; Tricky encoding explanation
|
3
|
+
;
|
4
|
+
; 65535 = 0xFFFF (unsigned)
|
5
|
+
; -1 = 0xFFFF (16-bit signed)
|
6
|
+
; Two different numbers are encoded the same way
|
7
|
+
; depending on the range considered (signed or unsigned).
|
8
|
+
; When executed, instructions will interpret the immediate as
|
9
|
+
; signed, unsigned, or both (ADD/CMP/...).
|
10
|
+
; MOV example
|
11
|
+
mov ax, 65535
|
12
|
+
mov ax, -1
|
13
|
+
; ADD example
|
14
|
+
; As 65535 = 0xFFFF = -1 and -1 = 0xFF for 8 bits,
|
15
|
+
; the command is assembled with R16, I8: 83 C0+T data
|
16
|
+
; 0xFF will be sign-extended to 0xFFFF when executed.
|
17
|
+
add ax, 65535
|
@@ -0,0 +1,21 @@
|
|
1
|
+
20
|
2
|
+
add ax, 0x1234
|
3
|
+
add al, 12h
|
4
|
+
add bx, 4
|
5
|
+
add ah, 10
|
6
|
+
add bx, 5620
|
7
|
+
add bx, 1999
|
8
|
+
add AX, bx
|
9
|
+
add cx, -98
|
10
|
+
add bx, 0x89
|
11
|
+
add bx, 10010001b
|
12
|
+
add bx, 1001b
|
13
|
+
add ah, al
|
14
|
+
add bl, 8
|
15
|
+
add bh, 'A'
|
16
|
+
add dx, 65535
|
17
|
+
add dx, -128
|
18
|
+
ADD cl, -9
|
19
|
+
add dh, 0x5
|
20
|
+
add dl, '$' - 3h * 0x0c
|
21
|
+
add bl, cl
|
@@ -0,0 +1 @@
|
|
1
|
+
Line 1: Unknown command
|
@@ -0,0 +1 @@
|
|
1
|
+
Line 2: Invalid expression or argument
|
@@ -0,0 +1 @@
|
|
1
|
+
Line 3: Invalid operand
|
@@ -0,0 +1 @@
|
|
1
|
+
Line 1: Invalid number of arguments
|
@@ -0,0 +1 @@
|
|
1
|
+
Line 1: Invalid operand
|
@@ -0,0 +1 @@
|
|
1
|
+
Line 4: Invalid expression or argument
|
@@ -0,0 +1 @@
|
|
1
|
+
Line 2: Invalid expression or argument
|
@@ -0,0 +1,8 @@
|
|
1
|
+
| | ; Test 'parser'
|
2
|
+
0000 | 83 C3 DA | add bx, ';'-','+'\''-'\\' ; 'this, is, a, comment'
|
3
|
+
| | ; mov ax, 12h
|
4
|
+
0003 | B8 05 00 | mov ax, 5 ; mov bx, 3
|
5
|
+
0006 | B3 70 | mov bl, '8'*2 ; , 4
|
6
|
+
0008 | BA 57 00 | mov dx, '(' + 2 * 3 + ')'
|
7
|
+
000B | B9 00 00 | mov cx, 2 + '+' - '-'
|
8
|
+
000E | B8 5F 00 | mov ax, ( (2+3) * (5+$) )
|
@@ -0,0 +1,23 @@
|
|
1
|
+
| | ; ---------------------------------------
|
2
|
+
| | ; Hello
|
3
|
+
| | ; ---------------------------------------
|
4
|
+
| |
|
5
|
+
| | ;
|
6
|
+
| | ; Display Hello word on screen with interrupt 21h
|
7
|
+
| | ;
|
8
|
+
| |
|
9
|
+
0000 | B2 48 | mov dl, 'H'
|
10
|
+
0002 | B4 02 | mov ah, 2
|
11
|
+
0004 | CD 21 | int 21h
|
12
|
+
| |
|
13
|
+
0006 | B2 65 | MOV DL, 'e'
|
14
|
+
0008 | CD 21 | INT 21h
|
15
|
+
| |
|
16
|
+
000A | B2 6C | mov dl, 'l'
|
17
|
+
000C | CD 21 | int 21h
|
18
|
+
| |
|
19
|
+
000E | B2 6C | mov dl, 'l'
|
20
|
+
0010 | CD 21 | int 21h
|
21
|
+
| |
|
22
|
+
0012 | B2 6F | mov dl, 'o'
|
23
|
+
0014 | CD 21 | int 21h
|
@@ -0,0 +1,24 @@
|
|
1
|
+
0000 | B8 FF FF | mov ax, -1
|
2
|
+
0003 | BB 80 00 | mov bx, 128
|
3
|
+
0006 | B9 15 02 | mov cx, 215h
|
4
|
+
0009 | BA 91 00 | mov dx, 10010001b
|
5
|
+
000C | 89 C8 | mov ax, cx
|
6
|
+
000E | 89 DA | mov dx, bx
|
7
|
+
0010 | BB 00 80 | mov bx, -32768
|
8
|
+
| |
|
9
|
+
0013 | B4 0A | mov ah, 010
|
10
|
+
0015 | B0 FF | mov al, 255
|
11
|
+
0017 | B7 01 | mov bh, 0x01
|
12
|
+
0019 | B1 09 | mov cl, 1001b
|
13
|
+
001B | B6 7E | mov dh, '~'
|
14
|
+
001D | 88 CC | mov ah, cl
|
15
|
+
| |
|
16
|
+
001F | B8 FA FF | mov ax, 'b'-'h'
|
17
|
+
0022 | BB 0F 00 | mov bx, 3 * ( 8 - 7 / 2 )
|
18
|
+
0025 | B9 F7 20 | mov cx, ( 1001000b+12h-0x03 ) * 'a'
|
19
|
+
0028 | BA 28 00 | mov dx, $
|
20
|
+
002B | B8 30 00 | mov ax, 5h + $
|
21
|
+
002E | B8 31 00 | mov ax, -10h + 'A'
|
22
|
+
| |
|
23
|
+
0031 | B2 05 | mov dl, 0ah / 2
|
24
|
+
0033 | B1 65 | mov cl, 100 - 0ch + 0dh
|
@@ -0,0 +1,16 @@
|
|
1
|
+
| | ; Tricky encoding explanation
|
2
|
+
| | ;
|
3
|
+
| | ; 65535 = 0xFFFF (unsigned)
|
4
|
+
| | ; -1 = 0xFFFF (16-bit signed)
|
5
|
+
| | ; Two different numbers are encoded the same way
|
6
|
+
| | ; depending on the range considered (signed or unsigned).
|
7
|
+
| | ; When executed, instructions will interpret the immediate as
|
8
|
+
| | ; signed, unsigned, or both (ADD/CMP/...).
|
9
|
+
| | ; MOV example
|
10
|
+
0000 | B8 FF FF | mov ax, 65535
|
11
|
+
0003 | B8 FF FF | mov ax, -1
|
12
|
+
| | ; ADD example
|
13
|
+
| | ; As 65535 = 0xFFFF = -1 and -1 = 0xFF for 8 bits,
|
14
|
+
| | ; the command is assembled with R16, I8: 83 C0+T data
|
15
|
+
| | ; 0xFF will be sign-extended to 0xFFFF when executed.
|
16
|
+
0006 | 83 C0 FF | add ax, 65535
|
@@ -0,0 +1,20 @@
|
|
1
|
+
0000 | 05 34 12 | add ax, 0x1234
|
2
|
+
0003 | 04 12 | add al, 12h
|
3
|
+
0005 | 83 C3 04 | add bx, 4
|
4
|
+
0008 | 80 C4 0A | add ah, 10
|
5
|
+
000B | 81 C3 F4 15 | add bx, 5620
|
6
|
+
000F | 81 C3 CF 07 | add bx, 1999
|
7
|
+
0013 | 01 D8 | add AX, bx
|
8
|
+
0015 | 83 C1 9E | add cx, -98
|
9
|
+
0018 | 81 C3 89 00 | add bx, 0x89
|
10
|
+
001C | 81 C3 91 00 | add bx, 10010001b
|
11
|
+
0020 | 83 C3 09 | add bx, 1001b
|
12
|
+
0023 | 00 C4 | add ah, al
|
13
|
+
0025 | 80 C3 08 | add bl, 8
|
14
|
+
0028 | 80 C7 41 | add bh, 'A'
|
15
|
+
002B | 83 C2 FF | add dx, 65535
|
16
|
+
002E | 83 C2 80 | add dx, -128
|
17
|
+
0031 | 80 C1 F7 | ADD cl, -9
|
18
|
+
0034 | 80 C6 05 | add dh, 0x5
|
19
|
+
0037 | 80 C2 00 | add dl, '$' - 3h * 0x0c
|
20
|
+
003A | 00 CB | add bl, cl
|
@@ -0,0 +1 @@
|
|
1
|
+
Line 4: Invalid expression or argument
|
@@ -0,0 +1,11 @@
|
|
1
|
+
0000 | 80 C5 FF | add ch, -1
|
2
|
+
0003 | 80 C5 FF | add ch, 0xFF
|
3
|
+
0006 | 83 C1 7F | add cx, 127
|
4
|
+
0009 | 81 C1 80 00 | add cx, 128
|
5
|
+
000D | 05 FF 00 | add ax, 0xFF
|
6
|
+
0010 | 05 7F FF | add ax, 0xff7f
|
7
|
+
0013 | 83 C0 80 | add ax, 0xff80
|
8
|
+
0016 | 83 C3 FF | add bx, 65535
|
9
|
+
0019 | 83 C3 80 | add bx, -128
|
10
|
+
001C | 05 1C 00 | add ax, $
|
11
|
+
001F | 05 3F 00 | add ax, 2*$+1
|
@@ -0,0 +1,18 @@
|
|
1
|
+
var inputs = readline().split(' ');
|
2
|
+
const nbCharacteristics = parseInt(inputs[0]);
|
3
|
+
const nbPeople = parseInt(inputs[1]);
|
4
|
+
for (let i = 0; i < nbCharacteristics; i++) {
|
5
|
+
var inputs = readline().split(' ');
|
6
|
+
for (let j = 0; j < nbPeople; j++) {
|
7
|
+
const characteristic = inputs[j];
|
8
|
+
}
|
9
|
+
}
|
10
|
+
const nbLinks = parseInt(readline());
|
11
|
+
for (let i = 0; i < nbLinks; i++) {
|
12
|
+
const link = readline();
|
13
|
+
}
|
14
|
+
|
15
|
+
// Write an answer using console.log()
|
16
|
+
// To debug: console.error('Debug messages...');
|
17
|
+
|
18
|
+
console.log('Amelia Bob Charles Daniel\nCar Autobus Bicycle Roller\nTree Flower Bush Herb\nTurtle Elephant Rhinoceros Ant');
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?php
|
2
|
+
fscanf(STDIN, "%d %d", $nbCharacteristics, $nbPeople);
|
3
|
+
for ($i = 0; $i < $nbCharacteristics; $i++)
|
4
|
+
{
|
5
|
+
$inputs = explode(" ", fgets(STDIN));
|
6
|
+
for ($j = 0; $j < $nbPeople; $j++)
|
7
|
+
{
|
8
|
+
$characteristic = ($inputs[$j]);
|
9
|
+
}
|
10
|
+
}
|
11
|
+
fscanf(STDIN, "%d", $nbLinks);
|
12
|
+
for ($i = 0; $i < $nbLinks; $i++)
|
13
|
+
{
|
14
|
+
$link = stream_get_line(STDIN, 256 + 1, "\n");
|
15
|
+
}
|
16
|
+
|
17
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
18
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
19
|
+
|
20
|
+
echo("Amelia Bob Charles Daniel\nCar Autobus Bicycle Roller\nTree Flower Bush Herb\nTurtle Elephant Rhinoceros Ant\n");
|
@@ -0,0 +1,43 @@
|
|
1
|
+
{
|
2
|
+
"path": "hard/EinsteinsRiddleSolver",
|
3
|
+
"name": "Einstein’s riddle solver",
|
4
|
+
"alphanumName": "EinsteinsRiddleSolver",
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/einsteins-riddle-solver",
|
6
|
+
"tests": [
|
7
|
+
{
|
8
|
+
"name": "4 *4 simple",
|
9
|
+
"alphanumName": "FourByFourSimple",
|
10
|
+
"file": "01 - 4 x4 simple.txt"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"name": "4 * 5 medium",
|
14
|
+
"alphanumName": "FourByFiveMedium",
|
15
|
+
"file": "02 - 4 x 5 medium.txt"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "7 * 6 Hard",
|
19
|
+
"alphanumName": "SevenBySixHard",
|
20
|
+
"file": "03 - 7 x 6 Hard.txt"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": "5 * 5 Medium",
|
24
|
+
"alphanumName": "FiveByFiveMedium",
|
25
|
+
"file": "04 - 5 x 5 Medium.txt"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "2 * 2 Trivial",
|
29
|
+
"alphanumName": "TwoByTwoTrivial",
|
30
|
+
"file": "05 - 2 x 2 Trivial.txt"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"name": "2 * 1 Simple",
|
34
|
+
"alphanumName": "TwoByOneSimple",
|
35
|
+
"file": "06 - 2 x 1 Simple.txt"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"name": "1 * 2 Simple",
|
39
|
+
"alphanumName": "OneByTwoSimple",
|
40
|
+
"file": "07 - 1 x 2 Simple.txt"
|
41
|
+
}
|
42
|
+
]
|
43
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
4 4
|
2
|
+
Amelia Bob Charles Daniel
|
3
|
+
Autobus Car Bicycle Roller
|
4
|
+
Herb Bush Tree Flower
|
5
|
+
Turtle Ant Rhinoceros Elephant
|
6
|
+
15
|
7
|
+
Charles & Bicycle
|
8
|
+
Flower & Bob
|
9
|
+
Elephant ! Daniel
|
10
|
+
Elephant & Autobus
|
11
|
+
Rhinoceros & Bicycle
|
12
|
+
Amelia & Turtle
|
13
|
+
Tree & Turtle
|
14
|
+
Herb ! Car
|
15
|
+
Bush ! Daniel
|
16
|
+
Elephant & Bob
|
17
|
+
Tree & Car
|
18
|
+
Roller & Ant
|
19
|
+
Flower ! Daniel
|
20
|
+
Tree ! Elephant
|
21
|
+
Tree ! Bob
|
@@ -0,0 +1,29 @@
|
|
1
|
+
4 5
|
2
|
+
Windsurfing Climbing Badminton Ping-pong Ice-skating
|
3
|
+
Sarah Charlie Paul Ryan Frederic
|
4
|
+
Policeman Painter Pilot Dentist Engineer
|
5
|
+
Guitar Violin Trumpet Tambourine Xylophone
|
6
|
+
23
|
7
|
+
Painter ! Tambourine
|
8
|
+
Policeman ! Violin
|
9
|
+
Frederic ! Ping-pong
|
10
|
+
Pilot ! Climbing
|
11
|
+
Windsurfing ! Tambourine
|
12
|
+
Climbing ! Tambourine
|
13
|
+
Paul & Dentist
|
14
|
+
Charlie & Trumpet
|
15
|
+
Dentist & Tambourine
|
16
|
+
Engineer ! Violin
|
17
|
+
Sarah & Badminton
|
18
|
+
Violin ! Windsurfing
|
19
|
+
Climbing ! Guitar
|
20
|
+
Painter ! Violin
|
21
|
+
Policeman ! Guitar
|
22
|
+
Badminton ! Guitar
|
23
|
+
Policeman ! Xylophone
|
24
|
+
Frederic & Violin
|
25
|
+
Painter ! Windsurfing
|
26
|
+
Ryan & Guitar
|
27
|
+
Frederic & Ice-skating
|
28
|
+
Windsurfing ! Xylophone
|
29
|
+
Charlie ! Tambourine
|
@@ -0,0 +1,46 @@
|
|
1
|
+
7 6
|
2
|
+
Elephant Cat Dog Rabbit Rat Lion
|
3
|
+
Sun Rain Thunderstorm Cloud Eclipse Snow
|
4
|
+
Ice-skating Climbing Badminton Windsurfing Ping-pong Paragliding
|
5
|
+
Cowboy Detective Helmet Santa Wizard Cap
|
6
|
+
25 1 2 10 20 50
|
7
|
+
Tambourine Xylophone Flute Saxophone Keyboard Harp
|
8
|
+
Policeman Painter Pilot Dentist Engineer Doctor
|
9
|
+
37
|
10
|
+
Pilot & Snow
|
11
|
+
Elephant ! Ping-pong
|
12
|
+
Saxophone & Rat
|
13
|
+
Dentist & Cat
|
14
|
+
Tambourine & Cloud
|
15
|
+
Painter & Sun
|
16
|
+
2 & Ice-skating
|
17
|
+
50 & Ping-pong
|
18
|
+
Engineer ! Badminton
|
19
|
+
Pilot ! Windsurfing
|
20
|
+
Pilot ! Paragliding
|
21
|
+
10 & Detective
|
22
|
+
50 & Helmet
|
23
|
+
Engineer ! Cowboy
|
24
|
+
Keyboard ! 25
|
25
|
+
Doctor ! Keyboard
|
26
|
+
Policeman ! Flute
|
27
|
+
Engineer & Harp
|
28
|
+
Ping-pong ! Dog
|
29
|
+
Rain & Badminton
|
30
|
+
Climbing & Wizard
|
31
|
+
Xylophone & Ping-pong
|
32
|
+
Painter ! Paragliding
|
33
|
+
1 ! Cowboy
|
34
|
+
Painter ! Santa
|
35
|
+
Doctor ! Flute
|
36
|
+
Cloud ! Elephant
|
37
|
+
Eclipse ! Flute
|
38
|
+
Dentist & Ice-skating
|
39
|
+
Doctor & Detective
|
40
|
+
Painter ! Flute
|
41
|
+
Paragliding ! 25
|
42
|
+
Engineer ! 1
|
43
|
+
Policeman & Climbing
|
44
|
+
Harp & Lion
|
45
|
+
Flute & Thunderstorm
|
46
|
+
Climbing ! Rain
|
@@ -0,0 +1,29 @@
|
|
1
|
+
5 5
|
2
|
+
Saxophone Keyboard Harp Guitar Violin
|
3
|
+
1 5 10 25 100
|
4
|
+
Cheese Cherry Corn Mushroom Pasta
|
5
|
+
Thunderstorm Cloud Eclipse Snow Night
|
6
|
+
Cricket Boxing Bowling Football Volleyball
|
7
|
+
22
|
8
|
+
100 ! Violin
|
9
|
+
Thunderstorm & Keyboard
|
10
|
+
Saxophone & Cricket
|
11
|
+
Snow & 10
|
12
|
+
5 ! Pasta
|
13
|
+
Snow ! Mushroom
|
14
|
+
Bowling ! Cherry
|
15
|
+
Cheese ! Bowling
|
16
|
+
Cherry & Night
|
17
|
+
Snow & Harp
|
18
|
+
Bowling ! Guitar
|
19
|
+
Football & 1
|
20
|
+
Thunderstorm & Corn
|
21
|
+
Eclipse & 1
|
22
|
+
Night & 25
|
23
|
+
Bowling ! Thunderstorm
|
24
|
+
Pasta ! Snow
|
25
|
+
Boxing ! Harp
|
26
|
+
Night & Saxophone
|
27
|
+
Saxophone & 25
|
28
|
+
Cricket ! 100
|
29
|
+
Eclipse ! 100
|