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 2233bb7 commit 99990f2Copy full SHA for 99990f2
app/src/main/java/hexlet/code/Progression.java
@@ -23,7 +23,7 @@ public static void gameLogic() {
23
String[] progressionWithDots = new String[progression.length];
24
for (int i = 0; i < progression.length; i++) {
25
if (i == randHideElement) {
26
- progressionWithDots[i] = "...";
+ progressionWithDots[i] = "..";
27
} else {
28
progressionWithDots[i] = String.valueOf(progression[i]);
29
}
0 commit comments