We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be57210 commit 7b0ecdeCopy full SHA for 7b0ecde
443-string-compression/443-string-compression.cpp
@@ -6,7 +6,7 @@ class Solution {
6
while(i<n){
7
int j = i+1;
8
while(j<n && chars[i] == chars[j]){
9
- j++;
+ j+=1;
10
}
11
12
// ya toh vector pura traverse krr diyaa
0 commit comments