Skip to content

Commit c361b03

Browse files
fix build
1 parent d35b3b7 commit c361b03

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+1
-1
lines changed

src/main/java/com/fishercoder/solutions/_394.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public String decodeString(String s) {
1212
int idx = 0;
1313
str.push("");
1414

15-
while(idx < s.length()) {
15+
while (idx < s.length()) {
1616
if (s.charAt(idx) >= '0' && s.charAt(idx) <= '9') {
1717
int start = idx;
1818
while (s.charAt(idx + 1) >= '0' && s.charAt(idx + 1) <= '9') {

0 commit comments

Comments
 (0)