@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.
- package/CHANGELOG.md +12 -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/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/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,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 @@
|
|
1
|
+
13.500
|
@@ -0,0 +1 @@
|
|
1
|
+
43.014
|
@@ -0,0 +1 @@
|
|
1
|
+
1368.278
|
@@ -0,0 +1 @@
|
|
1
|
+
No Overlap
|
@@ -0,0 +1 @@
|
|
1
|
+
Overlap, But Infinite
|
@@ -0,0 +1 @@
|
|
1
|
+
No Overlap
|
@@ -0,0 +1 @@
|
|
1
|
+
Overlap, But Infinite
|
@@ -0,0 +1 @@
|
|
1
|
+
Overlap, But Infinite
|
@@ -0,0 +1 @@
|
|
1
|
+
No Overlap
|
@@ -0,0 +1 @@
|
|
1
|
+
No Overlap
|
@@ -0,0 +1 @@
|
|
1
|
+
88.756
|
@@ -0,0 +1 @@
|
|
1
|
+
9.864
|
@@ -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,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,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,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
|