@cyrilverloop/codingame-configuration 1.18.0 → 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.
Files changed (153) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.cpp +17 -0
  3. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.java +16 -0
  4. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.js +6 -0
  5. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.php +7 -0
  6. package/config/hard/BeautifulBaseIsABeautifulSum/code/CGCode.ts +6 -0
  7. package/config/hard/BeautifulBaseIsABeautifulSum/config.json +33 -0
  8. package/config/hard/BeautifulBaseIsABeautifulSum/input/01 - test 1.txt +1 -0
  9. package/config/hard/BeautifulBaseIsABeautifulSum/input/02 - test 2.txt +1 -0
  10. package/config/hard/BeautifulBaseIsABeautifulSum/input/03 - test 3.txt +1 -0
  11. package/config/hard/BeautifulBaseIsABeautifulSum/input/04 - test 4.txt +1 -0
  12. package/config/hard/BeautifulBaseIsABeautifulSum/input/05 - test 5.txt +1 -0
  13. package/config/hard/BeautifulBaseIsABeautifulSum/output/01 - test 1.txt +1 -0
  14. package/config/hard/BeautifulBaseIsABeautifulSum/output/02 - test 2.txt +1 -0
  15. package/config/hard/BeautifulBaseIsABeautifulSum/output/03 - test 3.txt +1 -0
  16. package/config/hard/BeautifulBaseIsABeautifulSum/output/04 - test 4.txt +1 -0
  17. package/config/hard/BeautifulBaseIsABeautifulSum/output/05 - test 5.txt +1 -0
  18. package/config/hard/UnfloodTheWorld/code/CGCode.cpp +24 -0
  19. package/config/hard/UnfloodTheWorld/code/CGCode.java +22 -0
  20. package/config/hard/UnfloodTheWorld/code/CGCode.js +14 -0
  21. package/config/hard/UnfloodTheWorld/code/CGCode.php +15 -0
  22. package/config/hard/UnfloodTheWorld/code/CGCode.ts +14 -0
  23. package/config/hard/UnfloodTheWorld/config.json +48 -0
  24. package/config/hard/UnfloodTheWorld/input/01 - One drain.txt +5 -0
  25. package/config/hard/UnfloodTheWorld/input/02 - Hill.txt +6 -0
  26. package/config/hard/UnfloodTheWorld/input/03 - Wall.txt +4 -0
  27. package/config/hard/UnfloodTheWorld/input/04 - Flat field.txt +4 -0
  28. package/config/hard/UnfloodTheWorld/input/05 - Chess board.txt +6 -0
  29. package/config/hard/UnfloodTheWorld/input/06 - Fractal.txt +10 -0
  30. package/config/hard/UnfloodTheWorld/input/07 - Maze.txt +10 -0
  31. package/config/hard/UnfloodTheWorld/input/08 - Plateaus.txt +7 -0
  32. package/config/hard/UnfloodTheWorld/output/01 - One drain.txt +1 -0
  33. package/config/hard/UnfloodTheWorld/output/02 - Hill.txt +1 -0
  34. package/config/hard/UnfloodTheWorld/output/03 - Wall.txt +1 -0
  35. package/config/hard/UnfloodTheWorld/output/04 - Flat field.txt +1 -0
  36. package/config/hard/UnfloodTheWorld/output/05 - Chess board.txt +1 -0
  37. package/config/hard/UnfloodTheWorld/output/06 - Fractal.txt +1 -0
  38. package/config/hard/UnfloodTheWorld/output/07 - Maze.txt +1 -0
  39. package/config/hard/UnfloodTheWorld/output/08 - Plateaus.txt +1 -0
  40. package/config/{hard → medium}/Hangman/config.json +1 -1
  41. package/config/medium/HillNotationAndHillOrder/code/CGCode.cpp +26 -0
  42. package/config/medium/HillNotationAndHillOrder/code/CGCode.java +26 -0
  43. package/config/medium/HillNotationAndHillOrder/code/CGCode.js +9 -0
  44. package/config/medium/HillNotationAndHillOrder/code/CGCode.php +11 -0
  45. package/config/medium/HillNotationAndHillOrder/code/CGCode.ts +9 -0
  46. package/config/medium/HillNotationAndHillOrder/config.json +33 -0
  47. package/config/medium/HillNotationAndHillOrder/input/01 - Simple Sort.txt +4 -0
  48. package/config/medium/HillNotationAndHillOrder/input/02 - Quantity Sort.txt +7 -0
  49. package/config/medium/HillNotationAndHillOrder/input/03 - Duplicates.txt +4 -0
  50. package/config/medium/HillNotationAndHillOrder/input/04 - Bigger Sort.txt +11 -0
  51. package/config/medium/HillNotationAndHillOrder/input/05 - Parenthesis.txt +4 -0
  52. package/config/medium/HillNotationAndHillOrder/output/01 - Simple Sort.txt +3 -0
  53. package/config/medium/HillNotationAndHillOrder/output/02 - Quantity Sort.txt +6 -0
  54. package/config/medium/HillNotationAndHillOrder/output/03 - Duplicates.txt +1 -0
  55. package/config/medium/HillNotationAndHillOrder/output/04 - Bigger Sort.txt +10 -0
  56. package/config/medium/HillNotationAndHillOrder/output/05 - Parenthesis.txt +3 -0
  57. package/config/medium/InequalityOverlapArea/code/CGCode.cpp +23 -0
  58. package/config/medium/InequalityOverlapArea/code/CGCode.java +24 -0
  59. package/config/medium/InequalityOverlapArea/code/CGCode.js +11 -0
  60. package/config/medium/InequalityOverlapArea/code/CGCode.php +13 -0
  61. package/config/medium/InequalityOverlapArea/code/CGCode.ts +11 -0
  62. package/config/medium/InequalityOverlapArea/config.json +68 -0
  63. package/config/medium/InequalityOverlapArea/input/01 - Simple Overlap.txt +4 -0
  64. package/config/medium/InequalityOverlapArea/input/02 - Floating.txt +5 -0
  65. package/config/medium/InequalityOverlapArea/input/03 - Pentagon.txt +6 -0
  66. package/config/medium/InequalityOverlapArea/input/04 - NO.txt +9 -0
  67. package/config/medium/InequalityOverlapArea/input/05 - Infinite.txt +7 -0
  68. package/config/medium/InequalityOverlapArea/input/06 - NoOverlap.txt +10 -0
  69. package/config/medium/InequalityOverlapArea/input/07 - Not Finite.txt +10 -0
  70. package/config/medium/InequalityOverlapArea/input/08 - Same Graph.txt +6 -0
  71. package/config/medium/InequalityOverlapArea/input/09 - One Line.txt +7 -0
  72. package/config/medium/InequalityOverlapArea/input/10 - One Point.txt +11 -0
  73. package/config/medium/InequalityOverlapArea/input/11 - Quadrilateral.txt +5 -0
  74. package/config/medium/InequalityOverlapArea/input/12 - Rectangle.txt +5 -0
  75. package/config/medium/InequalityOverlapArea/output/01 - Simple Overlap.txt +1 -0
  76. package/config/medium/InequalityOverlapArea/output/02 - Floating.txt +1 -0
  77. package/config/medium/InequalityOverlapArea/output/03 - Pentagon.txt +1 -0
  78. package/config/medium/InequalityOverlapArea/output/04 - NO.txt +1 -0
  79. package/config/medium/InequalityOverlapArea/output/05 - Infinite.txt +1 -0
  80. package/config/medium/InequalityOverlapArea/output/06 - NoOverlap.txt +1 -0
  81. package/config/medium/InequalityOverlapArea/output/07 - Not Finite.txt +1 -0
  82. package/config/medium/InequalityOverlapArea/output/08 - Same Graph.txt +1 -0
  83. package/config/medium/InequalityOverlapArea/output/09 - One Line.txt +1 -0
  84. package/config/medium/InequalityOverlapArea/output/10 - One Point.txt +1 -0
  85. package/config/medium/InequalityOverlapArea/output/11 - Quadrilateral.txt +1 -0
  86. package/config/medium/InequalityOverlapArea/output/12 - Rectangle.txt +1 -0
  87. package/config/medium/SwappingElements/code/CGCode.cpp +21 -0
  88. package/config/medium/SwappingElements/code/CGCode.java +22 -0
  89. package/config/medium/SwappingElements/code/CGCode.js +9 -0
  90. package/config/medium/SwappingElements/code/CGCode.php +11 -0
  91. package/config/medium/SwappingElements/code/CGCode.ts +9 -0
  92. package/config/medium/SwappingElements/config.json +83 -0
  93. package/config/medium/SwappingElements/input/01 - Kindergarten.txt +4 -0
  94. package/config/medium/SwappingElements/input/02 - ABC.txt +8 -0
  95. package/config/medium/SwappingElements/input/03 - Thread.txt +5 -0
  96. package/config/medium/SwappingElements/input/04 - Bob.txt +8 -0
  97. package/config/medium/SwappingElements/input/05 - Not Bob.txt +4 -0
  98. package/config/medium/SwappingElements/input/06 - Vacuum of the Space Key.txt +7 -0
  99. package/config/medium/SwappingElements/input/07 - Periodic Table.txt +19 -0
  100. package/config/medium/SwappingElements/input/08 - Chemical Compounds.txt +28 -0
  101. package/config/medium/SwappingElements/input/09 - Gibberish.txt +14 -0
  102. package/config/medium/SwappingElements/input/10 - Negative.txt +40 -0
  103. package/config/medium/SwappingElements/input/11 - How/342/200/231s your day going.txt" +19 -0
  104. package/config/medium/SwappingElements/input/12 - The World Ends.txt +117 -0
  105. package/config/medium/SwappingElements/input/13 - Numbering the Last One.txt +30 -0
  106. package/config/medium/SwappingElements/input/14 - Random.txt +19 -0
  107. package/config/medium/SwappingElements/input/15 - Coding.txt +10 -0
  108. package/config/medium/SwappingElements/output/01 - Kindergarten.txt +1 -0
  109. package/config/medium/SwappingElements/output/02 - ABC.txt +1 -0
  110. package/config/medium/SwappingElements/output/03 - Thread.txt +1 -0
  111. package/config/medium/SwappingElements/output/04 - Bob.txt +1 -0
  112. package/config/medium/SwappingElements/output/05 - Not Bob.txt +1 -0
  113. package/config/medium/SwappingElements/output/06 - Vacuum of the Space Key.txt +1 -0
  114. package/config/medium/SwappingElements/output/07 - Periodic Table.txt +1 -0
  115. package/config/medium/SwappingElements/output/08 - Chemical Compounds.txt +1 -0
  116. package/config/medium/SwappingElements/output/09 - Gibberish.txt +1 -0
  117. package/config/medium/SwappingElements/output/10 - Negative.txt +1 -0
  118. package/config/medium/SwappingElements/output/11 - How/342/200/231s your day going.txt" +1 -0
  119. package/config/medium/SwappingElements/output/12 - The World Ends.txt +1 -0
  120. package/config/medium/SwappingElements/output/13 - Numbering the Last One.txt +1 -0
  121. package/config/medium/SwappingElements/output/14 - Random.txt +1 -0
  122. package/config/medium/SwappingElements/output/15 - Coding.txt +1 -0
  123. package/config/medium/TableSolver/code/CGCode.cpp +21 -0
  124. package/config/medium/TableSolver/code/CGCode.java +22 -0
  125. package/config/medium/TableSolver/code/CGCode.js +9 -0
  126. package/config/medium/TableSolver/code/CGCode.php +11 -0
  127. package/config/medium/TableSolver/code/CGCode.ts +9 -0
  128. package/config/medium/TableSolver/config.json +43 -0
  129. package/config/medium/TableSolver/input/01 - Addition.txt +8 -0
  130. package/config/medium/TableSolver/input/02 - Subtraction.txt +8 -0
  131. package/config/medium/TableSolver/input/03 - Multiplication.txt +10 -0
  132. package/config/medium/TableSolver/input/04 - small.txt +4 -0
  133. package/config/medium/TableSolver/input/05 - BIG.txt +15 -0
  134. package/config/medium/TableSolver/input/06 - CG.txt +24 -0
  135. package/config/medium/TableSolver/input/07 - 0.txt +10 -0
  136. package/config/medium/TableSolver/output/01 - Addition.txt +7 -0
  137. package/config/medium/TableSolver/output/02 - Subtraction.txt +7 -0
  138. package/config/medium/TableSolver/output/03 - Multiplication.txt +9 -0
  139. package/config/medium/TableSolver/output/04 - small.txt +3 -0
  140. package/config/medium/TableSolver/output/05 - BIG.txt +15 -0
  141. package/config/medium/TableSolver/output/06 - CG.txt +23 -0
  142. package/config/medium/TableSolver/output/07 - 0.txt +9 -0
  143. package/package.json +1 -1
  144. /package/config/{hard → medium}/Hangman/code/CGCode.js +0 -0
  145. /package/config/{hard → medium}/Hangman/code/CGCode.php +0 -0
  146. /package/config/{hard → medium}/Hangman/input/01 - Solution found.txt +0 -0
  147. /package/config/{hard → medium}/Hangman/input/02 - Wrong answer.txt +0 -0
  148. /package/config/{hard → medium}/Hangman/input/03 - White space.txt +0 -0
  149. /package/config/{hard → medium}/Hangman/input/04 - Same letter.txt +0 -0
  150. /package/config/{hard → medium}/Hangman/output/01 - Solution found.txt +0 -0
  151. /package/config/{hard → medium}/Hangman/output/02 - Wrong answer.txt +0 -0
  152. /package/config/{hard → medium}/Hangman/output/03 - White space.txt +0 -0
  153. /package/config/{hard → medium}/Hangman/output/04 - Same letter.txt +0 -0
@@ -0,0 +1,13 @@
1
+ <?php
2
+ fscanf(STDIN, "%d", $n);
3
+ for ($i = 0; $i < $n; $i++)
4
+ {
5
+ $s = stream_get_line(STDIN, 30 + 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("The area\n");
12
+ echo("Overlap, But Infinite\n");
13
+ echo("No Overlap\n");
@@ -0,0 +1,11 @@
1
+ const n: number = parseInt(readline());
2
+ for (let i = 0; i < n; i++) {
3
+ const s: string = readline();
4
+ }
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('The area');
10
+ console.log('Overlap, But Infinite');
11
+ console.log('No Overlap');
@@ -0,0 +1,68 @@
1
+ {
2
+ "path": "medium/InequalityOverlapArea",
3
+ "name": "Inequality Overlap Area",
4
+ "alphanumName": "InequalityOverlapArea",
5
+ "link": "https://www.codingame.com/ide/puzzle/inequality-overlap-area",
6
+ "tests": [
7
+ {
8
+ "name": "Simple Overlap",
9
+ "alphanumName": "SimpleOverlap",
10
+ "file": "01 - Simple Overlap.txt"
11
+ },
12
+ {
13
+ "name": "Floating",
14
+ "alphanumName": "Floating",
15
+ "file": "02 - Floating.txt"
16
+ },
17
+ {
18
+ "name": "Pentagon",
19
+ "alphanumName": "Pentagon",
20
+ "file": "03 - Pentagon.txt"
21
+ },
22
+ {
23
+ "name": "NO",
24
+ "alphanumName": "NO",
25
+ "file": "04 - NO.txt"
26
+ },
27
+ {
28
+ "name": "Infinite",
29
+ "alphanumName": "Infinite",
30
+ "file": "05 - Infinite.txt"
31
+ },
32
+ {
33
+ "name": "NoOverlap",
34
+ "alphanumName": "NoOverlap",
35
+ "file": "06 - NoOverlap.txt"
36
+ },
37
+ {
38
+ "name": "Not Finite",
39
+ "alphanumName": "NotFinite",
40
+ "file": "07 - Not Finite.txt"
41
+ },
42
+ {
43
+ "name": "Same Graph",
44
+ "alphanumName": "SameGraph",
45
+ "file": "08 - Same Graph.txt"
46
+ },
47
+ {
48
+ "name": "One Line",
49
+ "alphanumName": "OneLine",
50
+ "file": "09 - One Line.txt"
51
+ },
52
+ {
53
+ "name": "One Point",
54
+ "alphanumName": "OnePoint",
55
+ "file": "10 - One Point.txt"
56
+ },
57
+ {
58
+ "name": "Quadrilateral",
59
+ "alphanumName": "Quadrilateral",
60
+ "file": "11 - Quadrilateral.txt"
61
+ },
62
+ {
63
+ "name": "Rectangle",
64
+ "alphanumName": "Rectangle",
65
+ "file": "12 - Rectangle.txt"
66
+ }
67
+ ]
68
+ }
@@ -0,0 +1,4 @@
1
+ 3
2
+ 2x + 3y >= 5
3
+ 4x + 3y <= -2
4
+ 0x + 1y <= 10
@@ -0,0 +1,5 @@
1
+ 4
2
+ 1.5x + 0.2y >= 0.8
3
+ 1.5x + 0.2y <= 10.6
4
+ 0.2x + 1.5y >= 0.5
5
+ 0.2x + 1.5y <= 10.2
@@ -0,0 +1,6 @@
1
+ 5
2
+ 2x + 9y <= 20
3
+ 2x + 1y <= 8
4
+ 1x + 1y >= -40
5
+ 1x + 0y >= -40
6
+ 0x + 2y >= -60
@@ -0,0 +1,9 @@
1
+ 8
2
+ 52x + 84y <= 968
3
+ 81x - 71y >= 654
4
+ 8x - 941y <= 64
5
+ 5x - 97y <= 8
6
+ 1x + 0y <= -8
7
+ 9x - 2y >= 300
8
+ 82x - 91y <= -105
9
+ 910x - 918y >= 108
@@ -0,0 +1,7 @@
1
+ 6
2
+ 5x + 9y >= 5
3
+ 7x + 2y >= 4
4
+ 9x + 2y >= -1
5
+ -2x + 8y >= 3
6
+ -8x - 5y <= -5
7
+ -1.6x + 8y >= -5
@@ -0,0 +1,10 @@
1
+ 9
2
+ 500x + 500y <= 1000
3
+ -500x - 500y <= -1000
4
+ 300x - 200y <= 800
5
+ -300x + 200y <= 700
6
+ 1000x + 0y >= 100
7
+ 0x + 1000y >= 100
8
+ 1000x + 0y <= 300
9
+ 0x + 1000y <= 300
10
+ 500x + 500y >= 1000
@@ -0,0 +1,10 @@
1
+ 9
2
+ 200x + 0y >= 200
3
+ 200x + 0y <= 600
4
+ 150x + 150y >= -900
5
+ -150x + 150y >= -900
6
+ 0x + 200y >= -1000
7
+ 250x - 250y <= 1000
8
+ -300x - 300y <= 1000
9
+ 300x + 600y >= -1000
10
+ 1x + 900y >= -815
@@ -0,0 +1,6 @@
1
+ 5
2
+ 6x + 2y >= 12
3
+ 3x + 1y >= 6
4
+ 9x + 3y >= 18
5
+ -18x - 6y <= -36
6
+ -60x - 20y <= -120
@@ -0,0 +1,7 @@
1
+ 6
2
+ 6x + 2y >= 12
3
+ 3x + 1y <= 6
4
+ 9x + 3y >= 18
5
+ -18x - 6y >= -36
6
+ -60x - 20y <= -120
7
+ 15x + 5y <= 30
@@ -0,0 +1,11 @@
1
+ 10
2
+ 6x + 2y >= 12
3
+ 3x + 1y <= 6
4
+ 9x + 3y >= 18
5
+ -18x - 6y >= -36
6
+ -60x - 20y <= -120
7
+ 15x + 5y <= 30
8
+ 0x + 1y <= 6
9
+ -3x + 1y >= 6
10
+ 1x + 0y >= 0
11
+ 1x - 1y >= -6
@@ -0,0 +1,5 @@
1
+ 4
2
+ 8x - 6y >= 4
3
+ -6x + 2y <= 12
4
+ 2x + 1y >= -19
5
+ 9x + 1y <= 5
@@ -0,0 +1,5 @@
1
+ 4
2
+ 1x + 0y >= 0
3
+ 0x + 1y >= 0
4
+ 1x + 0y <= 3.14
5
+ 0x + 1y <= 3.1415
@@ -0,0 +1 @@
1
+ Overlap, But Infinite
@@ -0,0 +1 @@
1
+ Overlap, But Infinite
@@ -0,0 +1 @@
1
+ Overlap, But Infinite
@@ -0,0 +1,21 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int n;
11
+ cin >> n; cin.ignore();
12
+ for (int i = 0; i < n; i++) {
13
+ string s;
14
+ getline(cin, s);
15
+ }
16
+
17
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
18
+ // To debug: cerr << "Debug messages..." << endl;
19
+
20
+ cout << "Mininum number of swaps needed" << endl;
21
+ }
@@ -0,0 +1,22 @@
1
+ import java.util.*;
2
+ import java.io.*;
3
+ import java.math.*;
4
+
5
+ class Solution {
6
+
7
+ public static void main(String args[]) {
8
+ Scanner in = new Scanner(System.in);
9
+ int n = in.nextInt();
10
+ if (in.hasNextLine()) {
11
+ in.nextLine();
12
+ }
13
+ for (int i = 0; i < n; i++) {
14
+ String s = in.nextLine();
15
+ }
16
+
17
+ // Write an answer using System.out.println()
18
+ // To debug: System.err.println("Debug messages...");
19
+
20
+ System.out.println("Mininum number of swaps needed");
21
+ }
22
+ }
@@ -0,0 +1,9 @@
1
+ const n = parseInt(readline());
2
+ for (let i = 0; i < n; i++) {
3
+ const s = readline();
4
+ }
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('Mininum number of swaps needed');
@@ -0,0 +1,11 @@
1
+ <?php
2
+ fscanf(STDIN, "%d", $n);
3
+ for ($i = 0; $i < $n; $i++)
4
+ {
5
+ $s = stream_get_line(STDIN, 1000 + 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("Mininum number of swaps needed\n");
@@ -0,0 +1,9 @@
1
+ const n: number = parseInt(readline());
2
+ for (let i = 0; i < n; i++) {
3
+ const s: string = readline();
4
+ }
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('Mininum number of swaps needed');
@@ -0,0 +1,83 @@
1
+ {
2
+ "path": "medium/SwappingElements",
3
+ "name": "Swapping Elements",
4
+ "alphanumName": "SwappingElements",
5
+ "link": "https://www.codingame.com/ide/puzzle/swapping-elements",
6
+ "tests": [
7
+ {
8
+ "name": "Kindergarten",
9
+ "alphanumName": "Kindergarten",
10
+ "file": "01 - Kindergarten.txt"
11
+ },
12
+ {
13
+ "name": "ABC",
14
+ "alphanumName": "ABC",
15
+ "file": "02 - ABC.txt"
16
+ },
17
+ {
18
+ "name": "Thread",
19
+ "alphanumName": "Thread",
20
+ "file": "03 - Thread.txt"
21
+ },
22
+ {
23
+ "name": "Bob",
24
+ "alphanumName": "Bob",
25
+ "file": "04 - Bob.txt"
26
+ },
27
+ {
28
+ "name": "Not Bob",
29
+ "alphanumName": "NotBob",
30
+ "file": "05 - Not Bob.txt"
31
+ },
32
+ {
33
+ "name": "Vacuum of the Space Key",
34
+ "alphanumName": "VacuumOfTheSpaceKey",
35
+ "file": "06 - Vacuum of the Space Key.txt"
36
+ },
37
+ {
38
+ "name": "Periodic Table",
39
+ "alphanumName": "PeriodicTable",
40
+ "file": "07 - Periodic Table.txt"
41
+ },
42
+ {
43
+ "name": "Chemical Compounds",
44
+ "alphanumName": "ChemicalCompounds",
45
+ "file": "08 - Chemical Compounds.txt"
46
+ },
47
+ {
48
+ "name": "Gibberish",
49
+ "alphanumName": "Gibberish",
50
+ "file": "09 - Gibberish.txt"
51
+ },
52
+ {
53
+ "name": "Negative",
54
+ "alphanumName": "Negative",
55
+ "file": "10 - Negative.txt"
56
+ },
57
+ {
58
+ "name": "How’s your day going?",
59
+ "alphanumName": "HowsYourDayGoing",
60
+ "file": "11 - How’s your day going.txt"
61
+ },
62
+ {
63
+ "name": "The World Ends",
64
+ "alphanumName": "TheWorldEnds",
65
+ "file": "12 - The World Ends.txt"
66
+ },
67
+ {
68
+ "name": "Numbering the Last One",
69
+ "alphanumName": "NumberingTheLastOne",
70
+ "file": "13 - Numbering the Last One.txt"
71
+ },
72
+ {
73
+ "name": "Random",
74
+ "alphanumName": "Random",
75
+ "file": "14 - Random.txt"
76
+ },
77
+ {
78
+ "name": "Coding",
79
+ "alphanumName": "Coding",
80
+ "file": "15 - Coding.txt"
81
+ }
82
+ ]
83
+ }
@@ -0,0 +1,5 @@
1
+ 4
2
+ This
3
+ Is
4
+ A
5
+ String
@@ -0,0 +1,8 @@
1
+ 7
2
+ This
3
+ is
4
+ Bob
5
+ and
6
+ he
7
+ says
8
+ "Hi!"
@@ -0,0 +1,4 @@
1
+ 3
2
+ Not Bob
3
+ is 612
4
+ years old.
@@ -0,0 +1,19 @@
1
+ 18
2
+ Hydrogen
3
+ Helium
4
+ Lithium
5
+ Beryllium
6
+ Boron
7
+ Carbon
8
+ Nitrogen
9
+ Oxygen
10
+ Fluorine
11
+ Neon
12
+ Sodium
13
+ Magnesium
14
+ Aluminum
15
+ Silicon
16
+ Phosphorus
17
+ Sulfur
18
+ Chlorine
19
+ Argon
@@ -0,0 +1,28 @@
1
+ 27
2
+ H2O
3
+ CO2
4
+ CH4
5
+ NaCl
6
+ H2SO4
7
+ HNO3
8
+ CH3COOH
9
+ C6H12O6
10
+ C2H5OH
11
+ CaCO3
12
+ MgSO4
13
+ NaHCO3
14
+ KNO3
15
+ NaOH
16
+ Ca(OH)2
17
+ C6H6
18
+ CH2O
19
+ CH3CH2OH
20
+ H2O2
21
+ K2CO3
22
+ H3PO4
23
+ CH4N2O
24
+ C6H8O7
25
+ Na2SO4
26
+ CHCl3
27
+ C3H6O3
28
+ C7H8
@@ -0,0 +1,14 @@
1
+ 13
2
+ dadflkuaoifaudl fadlf
3
+ jf aldf jaldfd lkafjasldf
4
+ adskfj aldfj aldfja
5
+ faaldfk refyaofaefh
6
+ aldsf lkefalefhla wef j
7
+ asdkf aifha kefha oefya of
8
+ akdsfh iarefh aksdfh asof
9
+ iouroIR KDFH AOF ADFH
10
+ df fgha or ortguq oar ahdoEOE tyOE
11
+ oayr oIE OTYOEIT EI OE HOTE
12
+ 23636iy q9y af aiufyaih f^&%&^#'
13
+ adfkyhsdi ioY(*#l jl jg9hklh
14
+ faota84979ah lzhrtarai
@@ -0,0 +1,40 @@
1
+ 39
2
+ q
3
+ w
4
+ e
5
+ r
6
+ t
7
+ y
8
+ u
9
+ i
10
+ o
11
+ p
12
+ a
13
+ s
14
+ d
15
+ f
16
+ g
17
+ h
18
+ j
19
+ k
20
+ l
21
+ z
22
+ x
23
+ c
24
+ v
25
+ b
26
+ n
27
+ m
28
+ 1
29
+ 2
30
+ 3
31
+ 4
32
+ 5
33
+ 6
34
+ 7
35
+ 8
36
+ 9
37
+ 0
38
+ .
39
+ >:(
40
+ (:>
@@ -0,0 +1,19 @@
1
+ 18
2
+ It is
3
+ really bad right
4
+ now.
5
+ This stickman
6
+ named Bob
7
+ who claims to be
8
+ very old
9
+ like more than
10
+ 200 years old
11
+ says
12
+ that
13
+ the world will
14
+ end in 3
15
+ 2
16
+ 1
17
+ ---
18
+ ...
19
+ huh?