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 d35b3b7 commit c361b03Copy full SHA for c361b03
src/main/java/com/fishercoder/solutions/_394.java
@@ -12,7 +12,7 @@ public String decodeString(String s) {
12
int idx = 0;
13
str.push("");
14
15
- while(idx < s.length()) {
+ while (idx < s.length()) {
16
if (s.charAt(idx) >= '0' && s.charAt(idx) <= '9') {
17
int start = idx;
18
while (s.charAt(idx + 1) >= '0' && s.charAt(idx + 1) <= '9') {
0 commit comments