8000 update 722 · githubniraj/Leetcode@1ae82de · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

8000
Appearance settings

Commit 1ae82de

Browse files
update 722
1 parent 357fd5c commit 1ae82de

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

src/main/java/com/fishercoder/solutions/firstthousand/_722.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ public List<String> removeComments(String[] source) {
2525
} else if (line.charAt(i + 1) == '/') {
2626
//this is a single line comment, remove
2727
if (!possiblyMultilineComment) {
28-
//if this is not part of a possibly multiline comment, then we can safely break out, see test case 4
28+
//only at this time, we know this is not part of a possibly multiline comment,
29+
//then we can safely break out, see test case 4
2930
break;
3031
}
3132
} else if (!possiblyMultilineComment) {

0 commit comments

Comments
 (0)
0