@cyrilverloop/codingame-configuration 1.24.0 → 1.25.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 (190) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/config/easy/LaughterIsContagious/code/CGCode.cpp +17 -0
  3. package/config/easy/LaughterIsContagious/code/CGCode.java +16 -0
  4. package/config/easy/LaughterIsContagious/code/CGCode.js +6 -0
  5. package/config/easy/LaughterIsContagious/code/CGCode.php +7 -0
  6. package/config/easy/LaughterIsContagious/code/CGCode.ts +6 -0
  7. package/config/easy/LaughterIsContagious/config.json +68 -0
  8. package/config/easy/LaughterIsContagious/input/01 - Everybody laughing.txt +1 -0
  9. package/config/easy/LaughterIsContagious/input/02 - Too far.txt +1 -0
  10. package/config/easy/LaughterIsContagious/input/03 - Example.txt +1 -0
  11. package/config/easy/LaughterIsContagious/input/04 - Very funny.txt +1 -0
  12. package/config/easy/LaughterIsContagious/input/05 - Not funny.txt +1 -0
  13. package/config/easy/LaughterIsContagious/input/06 - Lonely.txt +1 -0
  14. package/config/easy/LaughterIsContagious/input/07 - Solidarity.txt +1 -0
  15. package/config/easy/LaughterIsContagious/input/08 - Big show.txt +1 -0
  16. package/config/easy/LaughterIsContagious/input/09 - Very big show.txt +1 -0
  17. package/config/easy/LaughterIsContagious/input/10 - One Man Show.txt +1 -0
  18. package/config/easy/LaughterIsContagious/input/11 - Duo.txt +1 -0
  19. package/config/easy/LaughterIsContagious/input/12 - Trio.txt +1 -0
  20. package/config/easy/LaughterIsContagious/output/01 - Everybody laughing.txt +1 -0
  21. package/config/easy/LaughterIsContagious/output/02 - Too far.txt +1 -0
  22. package/config/easy/LaughterIsContagious/output/03 - Example.txt +1 -0
  23. package/config/easy/LaughterIsContagious/output/04 - Very funny.txt +1 -0
  24. package/config/easy/LaughterIsContagious/output/05 - Not funny.txt +1 -0
  25. package/config/easy/LaughterIsContagious/output/06 - Lonely.txt +1 -0
  26. package/config/easy/LaughterIsContagious/output/07 - Solidarity.txt +1 -0
  27. package/config/easy/LaughterIsContagious/output/08 - Big show.txt +1 -0
  28. package/config/easy/LaughterIsContagious/output/09 - Very big show.txt +1 -0
  29. package/config/easy/LaughterIsContagious/output/10 - One Man Show.txt +1 -0
  30. package/config/easy/LaughterIsContagious/output/11 - Duo.txt +1 -0
  31. package/config/easy/LaughterIsContagious/output/12 - Trio.txt +1 -0
  32. package/config/easy/RequestValidator/code/CGCode.cpp +19 -0
  33. package/config/easy/RequestValidator/code/CGCode.java +17 -0
  34. package/config/easy/RequestValidator/code/CGCode.js +7 -0
  35. package/config/easy/RequestValidator/code/CGCode.php +8 -0
  36. package/config/easy/RequestValidator/code/CGCode.ts +7 -0
  37. package/config/easy/RequestValidator/config.json +83 -0
  38. package/config/easy/RequestValidator/input/01 - Order Up!.txt +2 -0
  39. package/config/easy/RequestValidator/input/02 - Corrupted.txt +2 -0
  40. package/config/easy/RequestValidator/input/03 - One Cup.txt +2 -0
  41. package/config/easy/RequestValidator/input/04 - Checksum Error.txt +2 -0
  42. package/config/easy/RequestValidator/input/05 - Department Fix.txt +2 -0
  43. package/config/easy/RequestValidator/input/06 - Mismatched Order.txt +2 -0
  44. package/config/easy/RequestValidator/input/07 - Misplaced Order.txt +2 -0
  45. package/config/easy/RequestValidator/input/08 - Order Zero.txt +2 -0
  46. package/config/easy/RequestValidator/input/09 - Standardised Order.txt +2 -0
  47. package/config/easy/RequestValidator/input/10 - Decaffeinated Coffee.txt +2 -0
  48. package/config/easy/RequestValidator/input/11 - Invalid Header.txt +2 -0
  49. package/config/easy/RequestValidator/input/12 - Infinite Stock.txt +2 -0
  50. package/config/easy/RequestValidator/input/13 - Padded Frame.txt +2 -0
  51. package/config/easy/RequestValidator/input/14 - 0xC0FFEE.txt +2 -0
  52. package/config/easy/RequestValidator/input/15 - Missing Checksum.txt +2 -0
  53. package/config/easy/RequestValidator/output/01 - Order Up!.txt +6 -0
  54. package/config/easy/RequestValidator/output/02 - Corrupted.txt +1 -0
  55. package/config/easy/RequestValidator/output/03 - One Cup.txt +1 -0
  56. package/config/easy/RequestValidator/output/04 - Checksum Error.txt +1 -0
  57. package/config/easy/RequestValidator/output/05 - Department Fix.txt +16 -0
  58. package/config/easy/RequestValidator/output/06 - Mismatched Order.txt +1 -0
  59. package/config/easy/RequestValidator/output/07 - Misplaced Order.txt +1 -0
  60. package/config/easy/RequestValidator/output/08 - Order Zero.txt +7 -0
  61. package/config/easy/RequestValidator/output/09 - Standardised Order.txt +1 -0
  62. package/config/easy/RequestValidator/output/10 - Decaffeinated Coffee.txt +1 -0
  63. package/config/easy/RequestValidator/output/11 - Invalid Header.txt +1 -0
  64. package/config/easy/RequestValidator/output/12 - Infinite Stock.txt +16 -0
  65. package/config/easy/RequestValidator/output/13 - Padded Frame.txt +1 -0
  66. package/config/easy/RequestValidator/output/14 - 0xC0FFEE.txt +4 -0
  67. package/config/easy/RequestValidator/output/15 - Missing Checksum.txt +1 -0
  68. package/config/easy/SolarShadowHunter/code/CGCode.cpp +24 -0
  69. package/config/easy/SolarShadowHunter/code/CGCode.java +24 -0
  70. package/config/easy/SolarShadowHunter/code/CGCode.js +12 -0
  71. package/config/easy/SolarShadowHunter/code/CGCode.php +12 -0
  72. package/config/easy/SolarShadowHunter/code/CGCode.ts +12 -0
  73. package/config/easy/SolarShadowHunter/config.json +43 -0
  74. package/config/easy/SolarShadowHunter/input/01 - test 1.txt +7 -0
  75. package/config/easy/SolarShadowHunter/input/02 - test 2.txt +6 -0
  76. package/config/easy/SolarShadowHunter/input/03 - test 3.txt +8 -0
  77. package/config/easy/SolarShadowHunter/input/04 - test 4.txt +6 -0
  78. package/config/easy/SolarShadowHunter/input/05 - test 5.txt +7 -0
  79. package/config/easy/SolarShadowHunter/input/06 - test 6.txt +22 -0
  80. package/config/easy/SolarShadowHunter/input/07 - test 7.txt +32 -0
  81. package/config/easy/SolarShadowHunter/output/01 - test 1.txt +1 -0
  82. package/config/easy/SolarShadowHunter/output/02 - test 2.txt +1 -0
  83. package/config/easy/SolarShadowHunter/output/03 - test 3.txt +1 -0
  84. package/config/easy/SolarShadowHunter/output/04 - test 4.txt +1 -0
  85. package/config/easy/SolarShadowHunter/output/05 - test 5.txt +1 -0
  86. package/config/easy/SolarShadowHunter/output/06 - test 6.txt +1 -0
  87. package/config/easy/SolarShadowHunter/output/07 - test 7.txt +1 -0
  88. package/config/easy/TheDescentPart2/code/CGCode.cpp +29 -0
  89. package/config/easy/TheDescentPart2/code/CGCode.java +25 -0
  90. package/config/easy/TheDescentPart2/code/CGCode.js +18 -0
  91. package/config/easy/TheDescentPart2/code/CGCode.php +17 -0
  92. package/config/easy/TheDescentPart2/code/CGCode.ts +18 -0
  93. package/config/easy/TheDescentPart2/config.json +58 -0
  94. package/config/easy/TheDescentPart2/input/01 - test 1.txt +7 -0
  95. package/config/easy/TheDescentPart2/input/02 - test 2.txt +10 -0
  96. package/config/easy/TheDescentPart2/input/03 - test 3.txt +14 -0
  97. package/config/easy/TheDescentPart2/input/04 - test 4.txt +9 -0
  98. package/config/easy/TheDescentPart2/input/05 - test 5.txt +15 -0
  99. package/config/easy/TheDescentPart2/input/06 - test 6.txt +10 -0
  100. package/config/easy/TheDescentPart2/input/07 - test 7.txt +13 -0
  101. package/config/easy/TheDescentPart2/input/08 - test 8.txt +10 -0
  102. package/config/easy/TheDescentPart2/input/09 - test 9.txt +18 -0
  103. package/config/easy/TheDescentPart2/input/10 - test 10.txt +18 -0
  104. package/config/easy/TheDescentPart2/output/01 - test 1.txt +1 -0
  105. package/config/easy/TheDescentPart2/output/02 - test 2.txt +1 -0
  106. package/config/easy/TheDescentPart2/output/03 - test 3.txt +1 -0
  107. package/config/easy/TheDescentPart2/output/04 - test 4.txt +1 -0
  108. package/config/easy/TheDescentPart2/output/05 - test 5.txt +1 -0
  109. package/config/easy/TheDescentPart2/output/06 - test 6.txt +1 -0
  110. package/config/easy/TheDescentPart2/output/07 - test 7.txt +1 -0
  111. package/config/easy/TheDescentPart2/output/08 - test 8.txt +1 -0
  112. package/config/easy/TheDescentPart2/output/09 - test 9.txt +1 -0
  113. package/config/easy/TheDescentPart2/output/10 - test 10.txt +1 -0
  114. package/config/easy/WhereWasThisKnightBefore/code/CGCode.cpp +25 -0
  115. package/config/easy/WhereWasThisKnightBefore/code/CGCode.java +22 -0
  116. package/config/easy/WhereWasThisKnightBefore/code/CGCode.js +12 -0
  117. package/config/easy/WhereWasThisKnightBefore/code/CGCode.php +15 -0
  118. package/config/easy/WhereWasThisKnightBefore/code/CGCode.ts +12 -0
  119. package/config/easy/WhereWasThisKnightBefore/config.json +38 -0
  120. package/config/easy/WhereWasThisKnightBefore/input/01 - Easy start.txt +17 -0
  121. package/config/easy/WhereWasThisKnightBefore/input/02 - Some action.txt +17 -0
  122. package/config/easy/WhereWasThisKnightBefore/input/03 - Some noise on the board.txt +17 -0
  123. package/config/easy/WhereWasThisKnightBefore/input/04 - Check mate.txt +17 -0
  124. package/config/easy/WhereWasThisKnightBefore/input/05 - Crazy case.txt +17 -0
  125. package/config/easy/WhereWasThisKnightBefore/input/06 - Lots of noise.txt +17 -0
  126. package/config/easy/WhereWasThisKnightBefore/output/01 - Easy start.txt +2 -0
  127. package/config/easy/WhereWasThisKnightBefore/output/02 - Some action.txt +2 -0
  128. package/config/easy/WhereWasThisKnightBefore/output/03 - Some noise on the board.txt +2 -0
  129. package/config/easy/WhereWasThisKnightBefore/output/04 - Check mate.txt +2 -0
  130. package/config/easy/WhereWasThisKnightBefore/output/05 - Crazy case.txt +2 -0
  131. package/config/easy/WhereWasThisKnightBefore/output/06 - Lots of noise.txt +2 -0
  132. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.cpp +28 -0
  133. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.java +24 -0
  134. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.js +15 -0
  135. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.php +16 -0
  136. package/config/medium/ManaQuestHuntForThePerfectSeven/code/CGCode.ts +15 -0
  137. package/config/medium/ManaQuestHuntForThePerfectSeven/config.json +68 -0
  138. package/config/medium/ManaQuestHuntForThePerfectSeven/input/01 - Do I have a land.txt +5 -0
  139. package/config/medium/ManaQuestHuntForThePerfectSeven/input/02 - Any card will do.txt +6 -0
  140. package/config/medium/ManaQuestHuntForThePerfectSeven/input/03 - 100%.txt +4 -0
  141. package/config/medium/ManaQuestHuntForThePerfectSeven/input/04 - 0%.txt +4 -0
  142. package/config/medium/ManaQuestHuntForThePerfectSeven/input/05 - 1 Pattern.txt +6 -0
  143. package/config/medium/ManaQuestHuntForThePerfectSeven/input/06 - Overlap.txt +7 -0
  144. package/config/medium/ManaQuestHuntForThePerfectSeven/input/07 - 3 Patterns.txt +13 -0
  145. package/config/medium/ManaQuestHuntForThePerfectSeven/input/08 - 5 Patterns.txt +13 -0
  146. package/config/medium/ManaQuestHuntForThePerfectSeven/input/09 - 6 Patterns.txt +14 -0
  147. package/config/medium/ManaQuestHuntForThePerfectSeven/input/10 - 7 Patterns.txt +16 -0
  148. package/config/medium/ManaQuestHuntForThePerfectSeven/input/11 - 8 Patterns.txt +18 -0
  149. package/config/medium/ManaQuestHuntForThePerfectSeven/input/12 - 8 Patterns Impossible.txt +18 -0
  150. package/config/medium/ManaQuestHuntForThePerfectSeven/output/01 - Do I have a land.txt +1 -0
  151. package/config/medium/ManaQuestHuntForThePerfectSeven/output/02 - Any card will do.txt +1 -0
  152. package/config/medium/ManaQuestHuntForThePerfectSeven/output/03 - 100%.txt +1 -0
  153. package/config/medium/ManaQuestHuntForThePerfectSeven/output/04 - 0%.txt +1 -0
  154. package/config/medium/ManaQuestHuntForThePerfectSeven/output/05 - 1 Pattern.txt +1 -0
  155. package/config/medium/ManaQuestHuntForThePerfectSeven/output/06 - Overlap.txt +1 -0
  156. package/config/medium/ManaQuestHuntForThePerfectSeven/output/07 - 3 Patterns.txt +1 -0
  157. package/config/medium/ManaQuestHuntForThePerfectSeven/output/08 - 5 Patterns.txt +1 -0
  158. package/config/medium/ManaQuestHuntForThePerfectSeven/output/09 - 6 Patterns.txt +1 -0
  159. package/config/medium/ManaQuestHuntForThePerfectSeven/output/10 - 7 Patterns.txt +1 -0
  160. package/config/medium/ManaQuestHuntForThePerfectSeven/output/11 - 8 Patterns.txt +1 -0
  161. package/config/medium/ManaQuestHuntForThePerfectSeven/output/12 - 8 Patterns Impossible.txt +1 -0
  162. package/config/medium/TrigonometrySimplification/code/CGCode.cpp +19 -0
  163. package/config/medium/TrigonometrySimplification/code/CGCode.java +18 -0
  164. package/config/medium/TrigonometrySimplification/code/CGCode.js +9 -0
  165. package/config/medium/TrigonometrySimplification/code/CGCode.php +7 -0
  166. package/config/medium/TrigonometrySimplification/code/CGCode.ts +9 -0
  167. package/config/medium/TrigonometrySimplification/config.json +63 -0
  168. package/config/medium/TrigonometrySimplification/input/01 - test 1.txt +1 -0
  169. package/config/medium/TrigonometrySimplification/input/02 - test 2.txt +1 -0
  170. package/config/medium/TrigonometrySimplification/input/03 - test 3.txt +1 -0
  171. package/config/medium/TrigonometrySimplification/input/04 - test 4.txt +1 -0
  172. package/config/medium/TrigonometrySimplification/input/05 - test 5.txt +1 -0
  173. package/config/medium/TrigonometrySimplification/input/06 - test 6.txt +1 -0
  174. package/config/medium/TrigonometrySimplification/input/07 - test 7.txt +1 -0
  175. package/config/medium/TrigonometrySimplification/input/08 - test 8.txt +1 -0
  176. package/config/medium/TrigonometrySimplification/input/09 - test 9.txt +1 -0
  177. package/config/medium/TrigonometrySimplification/input/10 - test 10.txt +1 -0
  178. package/config/medium/TrigonometrySimplification/input/11 - test 11.txt +1 -0
  179. package/config/medium/TrigonometrySimplification/output/01 - test 1.txt +1 -0
  180. package/config/medium/TrigonometrySimplification/output/02 - test 2.txt +1 -0
  181. package/config/medium/TrigonometrySimplification/output/03 - test 3.txt +1 -0
  182. package/config/medium/TrigonometrySimplification/output/04 - test 4.txt +1 -0
  183. package/config/medium/TrigonometrySimplification/output/05 - test 5.txt +1 -0
  184. package/config/medium/TrigonometrySimplification/output/06 - test 6.txt +1 -0
  185. package/config/medium/TrigonometrySimplification/output/07 - test 7.txt +1 -0
  186. package/config/medium/TrigonometrySimplification/output/08 - test 8.txt +1 -0
  187. package/config/medium/TrigonometrySimplification/output/09 - test 9.txt +1 -0
  188. package/config/medium/TrigonometrySimplification/output/10 - test 10.txt +1 -0
  189. package/config/medium/TrigonometrySimplification/output/11 - test 11.txt +1 -0
  190. package/package.json +1 -1
@@ -0,0 +1,17 @@
1
+ RNBQKP
2
+ R.BQKBNR
3
+ PPP.PPPP
4
+ ..N.....
5
+ ...P....
6
+ ....p...
7
+ ..n.....
8
+ pppp.ppp
9
+ r.bqkbnr
10
+ R.BQKBNR
11
+ PPP.PPPP
12
+ ..N.....
13
+ ...n....
14
+ ....p...
15
+ ........
16
+ pppp.ppp
17
+ r.bqkbnr
@@ -0,0 +1,17 @@
1
+ TCFDRP
2
+ T1FDRoCT
3
+ PPP.x.PP
4
+ oxCoxP.x
5
+ esFxPx.1
6
+ xp*Pp.xo
7
+ oxcxop .
8
+ poppx.pp
9
+ txfdrfct
10
+ T1FDRoCT
11
+ PPP.x.PP
12
+ ox*oxP.x
13
+ esFxPx.1
14
+ xC*Pp.xo
15
+ oxcxop u
16
+ poppx.pp
17
+ txfdrfct
@@ -0,0 +1,17 @@
1
+ KDTLSB
2
+ t..dk.st
3
+ bbb..bbb
4
+ ...b....
5
+ ..B.b...
6
+ ..LsB...
7
+ ..S..D..
8
+ BBB..BBB
9
+ T.L.K..T
10
+ t..dk.st
11
+ bbb..Dbb
12
+ ...b....
13
+ ..B.b...
14
+ ..LsB...
15
+ ..S.....
16
+ BBB..BBB
17
+ T.L.K..T
@@ -0,0 +1,17 @@
1
+ RDVX
2
+ .DVXRDVX
3
+ X..A....
4
+ .X...BXX
5
+ ..X..X..
6
+ rdvx..c.
7
+ ....xvdr
8
+ rrrrrrrr
9
+ ........
10
+ .DVXRDVX
11
+ X..A....
12
+ .X...BX*
13
+ ..X..X..
14
+ rdvx..X.
15
+ ..*.xvdr
16
+ rrrrrrrr
17
+ ...i....
@@ -0,0 +1,17 @@
1
+ IJK
2
+ abcdefKh
3
+ ABDIDEFH
4
+ ZYXWVUTS
5
+ zyxsatoj
6
+ lmnarepo
7
+ LMNtenkt
8
+ opqopera
9
+ iPQrotal
10
+ SaTORaKi
11
+ aReIObBY
12
+ TENetcDX
13
+ OpeRAdCj
14
+ RoTaSeDV
15
+ fEUzlLkO
16
+ gFTymMpP
17
+ hHSxnNqq
@@ -0,0 +1,28 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int c;
11
+ cin >> c; cin.ignore();
12
+ for (int i = 0; i < c; i++) {
13
+ string category;
14
+ int count;
15
+ cin >> category >> count; cin.ignore();
16
+ }
17
+ int q;
18
+ cin >> q; cin.ignore();
19
+ for (int i = 0; i < q; i++) {
20
+ string pattern;
21
+ cin >> pattern; cin.ignore();
22
+ }
23
+
24
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
25
+ // To debug: cerr << "Debug messages..." << endl;
26
+
27
+ cout << "0.0000" << endl;
28
+ }
@@ -0,0 +1,24 @@
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 c = in.nextInt();
10
+ for (int i = 0; i < c; i++) {
11
+ String category = in.next();
12
+ int count = in.nextInt();
13
+ }
14
+ int q = in.nextInt();
15
+ for (int i = 0; i < q; i++) {
16
+ String pattern = in.next();
17
+ }
18
+
19
+ // Write an answer using System.out.println()
20
+ // To debug: System.err.println("Debug messages...");
21
+
22
+ System.out.println("0.0000");
23
+ }
24
+ }
@@ -0,0 +1,15 @@
1
+ const c = parseInt(readline());
2
+ for (let i = 0; i < c; i++) {
3
+ var inputs = readline().split(' ');
4
+ const category = inputs[0];
5
+ const count = parseInt(inputs[1]);
6
+ }
7
+ const q = parseInt(readline());
8
+ for (let i = 0; i < q; i++) {
9
+ const pattern = readline();
10
+ }
11
+
12
+ // Write an answer using console.log()
13
+ // To debug: console.error('Debug messages...');
14
+
15
+ console.log('0.0000');
@@ -0,0 +1,16 @@
1
+ <?php
2
+ fscanf(STDIN, "%d", $c);
3
+ for ($i = 0; $i < $c; $i++)
4
+ {
5
+ fscanf(STDIN, "%s %d", $category, $count);
6
+ }
7
+ fscanf(STDIN, "%d", $q);
8
+ for ($i = 0; $i < $q; $i++)
9
+ {
10
+ fscanf(STDIN, "%s", $pattern);
11
+ }
12
+
13
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
14
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
15
+
16
+ echo("0.0000\n");
@@ -0,0 +1,15 @@
1
+ const c: number = parseInt(readline());
2
+ for (let i = 0; i < c; i++) {
3
+ var inputs: string[] = readline().split(' ');
4
+ const category: string = inputs[0];
5
+ const count: number = parseInt(inputs[1]);
6
+ }
7
+ const q: number = parseInt(readline());
8
+ for (let i = 0; i < q; i++) {
9
+ const pattern: string = readline();
10
+ }
11
+
12
+ // Write an answer using console.log()
13
+ // To debug: console.error('Debug messages...');
14
+
15
+ console.log('0.0000');
@@ -0,0 +1,68 @@
1
+ {
2
+ "path": "medium/ManaQuestHuntForThePerfectSeven",
3
+ "name": "Mana Quest: Hunt for the Perfect Seven",
4
+ "alphanumName": "ManaQuestHuntForThePerfectSeven",
5
+ "link": "https://www.codingame.com/ide/puzzle/mana-quest-hunt-for-the-perfect-seven",
6
+ "tests": [
7
+ {
8
+ "name": "Do I have a land",
9
+ "alphanumName": "DoIHaveALand",
10
+ "file": "01 - Do I have a land.txt"
11
+ },
12
+ {
13
+ "name": "Any card will do",
14
+ "alphanumName": "AnyCardWillDo",
15
+ "file": "02 - Any card will do.txt"
16
+ },
17
+ {
18
+ "name": "100%",
19
+ "alphanumName": "AHundredPercent",
20
+ "file": "03 - 100%.txt"
21
+ },
22
+ {
23
+ "name": "0%",
24
+ "alphanumName": "ZeroPercent",
25
+ "file": "04 - 0%.txt"
26
+ },
27
+ {
28
+ "name": "1 Pattern",
29
+ "alphanumName": "OnePattern",
30
+ "file": "05 - 1 Pattern.txt"
31
+ },
32
+ {
33
+ "name": "Overlap",
34
+ "alphanumName": "Overlap",
35
+ "file": "06 - Overlap.txt"
36
+ },
37
+ {
38
+ "name": "3 Patterns",
39
+ "alphanumName": "ThreePatterns",
40
+ "file": "07 - 3 Patterns.txt"
41
+ },
42
+ {
43
+ "name": "5 Patterns",
44
+ "alphanumName": "FivePatterns",
45
+ "file": "08 - 5 Patterns.txt"
46
+ },
47
+ {
48
+ "name": "6 Patterns",
49
+ "alphanumName": "SixPatterns",
50
+ "file": "09 - 6 Patterns.txt"
51
+ },
52
+ {
53
+ "name": "7 Patterns",
54
+ "alphanumName": "SevenPatterns",
55
+ "file": "10 - 7 Patterns.txt"
56
+ },
57
+ {
58
+ "name": "8 Patterns",
59
+ "alphanumName": "EightPatterns",
60
+ "file": "11 - 8 Patterns.txt"
61
+ },
62
+ {
63
+ "name": "8 Patterns Impossible",
64
+ "alphanumName": "EightPatternsImpossible",
65
+ "file": "12 - 8 Patterns Impossible.txt"
66
+ }
67
+ ]
68
+ }
@@ -0,0 +1,6 @@
1
+ 3
2
+ C1R 10
3
+ C1G 10
4
+ L0B 40
5
+ 1
6
+ C1x
@@ -0,0 +1,7 @@
1
+ 3
2
+ C1R 10
3
+ C2G 20
4
+ L0B 30
5
+ 2
6
+ C1x
7
+ CxR
@@ -0,0 +1,13 @@
1
+ 8
2
+ C1R 5
3
+ C1G 7
4
+ C2B 7
5
+ I2U 9
6
+ S3B 2
7
+ S4W 10
8
+ L0G 10
9
+ L0B 10
10
+ 3
11
+ C1x
12
+ I2U
13
+ L0G
@@ -0,0 +1,13 @@
1
+ 6
2
+ C1R 4
3
+ C2G 8
4
+ C3B 10
5
+ I1W 10
6
+ L0U 18
7
+ S2U 10
8
+ 5
9
+ x1x
10
+ C2x
11
+ C3x
12
+ I1x
13
+ L0x
@@ -0,0 +1,14 @@
1
+ 6
2
+ C1R 10
3
+ C2G 10
4
+ C5B 10
5
+ I1W 10
6
+ S2W 10
7
+ L0B 10
8
+ 6
9
+ xxR
10
+ CxG
11
+ C5x
12
+ x1W
13
+ S2x
14
+ L0x
@@ -0,0 +1,16 @@
1
+ 7
2
+ C1R 10
3
+ C2G 10
4
+ C3B 10
5
+ C4U 10
6
+ I1W 10
7
+ S2W 5
8
+ L0B 5
9
+ 7
10
+ C1x
11
+ C2x
12
+ C3x
13
+ CxU
14
+ xxx
15
+ S2x
16
+ x0B
@@ -0,0 +1,18 @@
1
+ 8
2
+ C1R 8
3
+ C2G 8
4
+ C3B 8
5
+ C4U 8
6
+ I8U 8
7
+ S5W 8
8
+ L0B 8
9
+ E1U 4
10
+ 8
11
+ C1x
12
+ C2x
13
+ xxx
14
+ CxU
15
+ I8x
16
+ Sxx
17
+ L0x
18
+ xxU
@@ -0,0 +1,18 @@
1
+ 8
2
+ C1R 8
3
+ C2G 8
4
+ C3B 8
5
+ C8U 8
6
+ I1W 8
7
+ S5W 8
8
+ L0B 8
9
+ E1R 4
10
+ 8
11
+ CxR
12
+ x2G
13
+ C3B
14
+ C8x
15
+ x1W
16
+ x5x
17
+ L0B
18
+ E1R
@@ -0,0 +1,19 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int s;
11
+ int c;
12
+ int f;
13
+ cin >> s >> c >> f; cin.ignore();
14
+
15
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
16
+ // To debug: cerr << "Debug messages..." << endl;
17
+
18
+ cout << "2cos²(x)=1+cos(2x)" << endl;
19
+ }
@@ -0,0 +1,18 @@
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 S = in.nextInt();
10
+ int C = in.nextInt();
11
+ int F = in.nextInt();
12
+
13
+ // Write an answer using System.out.println()
14
+ // To debug: System.err.println("Debug messages...");
15
+
16
+ System.out.println("2cos²(x)=1+cos(2x)");
17
+ }
18
+ }
@@ -0,0 +1,9 @@
1
+ var inputs = readline().split(' ');
2
+ const S = parseInt(inputs[0]);
3
+ const C = parseInt(inputs[1]);
4
+ const F = parseInt(inputs[2]);
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('2cos²(x)=1+cos(2x)');
@@ -0,0 +1,7 @@
1
+ <?php
2
+ fscanf(STDIN, "%d %d %d", $S, $C, $F);
3
+
4
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
5
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
6
+
7
+ echo("2cos²(x)=1+cos(2x)\n");
@@ -0,0 +1,9 @@
1
+ var inputs: string[] = readline().split(' ');
2
+ const S: number = parseInt(inputs[0]);
3
+ const C: number = parseInt(inputs[1]);
4
+ const F: number = parseInt(inputs[2]);
5
+
6
+ // Write an answer using console.log()
7
+ // To debug: console.error('Debug messages...');
8
+
9
+ console.log('2cos²(x)=1+cos(2x)');
@@ -0,0 +1,63 @@
1
+ {
2
+ "path": "medium/TrigonometrySimplification",
3
+ "name": "Trigonometry Simplification",
4
+ "alphanumName": "TrigonometrySimplification",
5
+ "link": "https://www.codingame.com/ide/puzzle/trigonometry-simplification",
6
+ "tests": [
7
+ {
8
+ "name": "Test 1",
9
+ "alphanumName": "test1",
10
+ "file": "01 - test 1.txt"
11
+ },
12
+ {
13
+ "name": "Test 2",
14
+ "alphanumName": "test2",
15
+ "file": "02 - test 2.txt"
16
+ },
17
+ {
18
+ "name": "Test 3",
19
+ "alphanumName": "test3",
20
+ "file": "03 - test 3.txt"
21
+ },
22
+ {
23
+ "name": "Test 4",
24
+ "alphanumName": "test4",
25
+ "file": "04 - test 4.txt"
26
+ },
27
+ {
28
+ "name": "Test 5",
29
+ "alphanumName": "test5",
30
+ "file": "05 - test 5.txt"
31
+ },
32
+ {
33
+ "name": "Test 6",
34
+ "alphanumName": "test6",
35
+ "file": "06 - test 6.txt"
36
+ },
37
+ {
38
+ "name": "Test 7",
39
+ "alphanumName": "test7",
40
+ "file": "07 - test 7.txt"
41
+ },
42
+ {
43
+ "name": "Test 8",
44
+ "alphanumName": "test8",
45
+ "file": "08 - test 8.txt"
46
+ },
47
+ {
48
+ "name": "Test 9",
49
+ "alphanumName": "test9",
50
+ "file": "09 - test 9.txt"
51
+ },
52
+ {
53
+ "name": "Test 10",
54
+ "alphanumName": "test10",
55
+ "file": "10 - test 10.txt"
56
+ },
57
+ {
58
+ "name": "Test 11",
59
+ "alphanumName": "test11",
60
+ "file": "11 - test 11.txt"
61
+ }
62
+ ]
63
+ }