Skip to content

Commit 939a232

Browse files
committed
cargo fmt
1 parent 1fab22e commit 939a232

File tree

1 file changed

+1
-1
lines changed
  • src/prob_0003_longest_substring

1 file changed

+1
-1
lines changed

src/prob_0003_longest_substring/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ impl Solution {
2121
curr_substr_start_idx += 1;
2222
}
2323
}
24-
24+
2525
curr_substr = &s[curr_substr_start_idx..=idx];
2626
longest_substr = longest_substr.max(curr_substr.len());
2727
}

0 commit comments

Comments
 (0)