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 7c2b785 commit f0df015Copy full SHA for f0df015
src/main/java/com/fishercoder/solutions/_1358.java
@@ -4,7 +4,7 @@ public class _1358 {
4
public static class Solution1 {
5
/**
6
* A classic sliding window problem, no dp or backtracking, just sliding window: use two pointers.
7
- * my new favorite queustion!
+ * my new favorite question!
8
*/
9
public int numberOfSubstrings(String s) {
10
int[] counts = new int[3];
0 commit comments