Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f0df015

Browse files
refactor 1358
1 parent 7c2b785 commit f0df015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public class _1358 {
44
public static class Solution1 {
55
/**
66
* A classic sliding window problem, no dp or backtracking, just sliding window: use two pointers.
7-
* my new favorite queustion!
7+
* my new favorite question!
88
*/
99
public int numberOfSubstrings(String s) {
1010
int[] counts = new int[3];

0 commit comments

Comments
 (0)