We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcbeb8f commit 8839eb2Copy full SHA for 8839eb2
app/src/main/java/hexlet/code/games/Progression.java
@@ -0,0 +1,20 @@
1
+package hexlet.code.games;
2
+
3
+import hexlet.code.Engine;
4
5
+public class Progression {
6
7
+ private static final String RULES = "What number is missing in the progression?";
8
9
+ public static void gameProgression() {
10
11
12
+ }
13
14
+ public static void generateProgression(int firstNumber, int step, int length) {
15
+ int currentNumber = firstNumber;
16
+ for (int i = 0; i < length; i++) {
17
18
19
20
+}
0 commit comments