Skip to content

Commit 7b0ecde

Browse files
committed
Time: 16 ms (7.92%), Space: 8.9 MB (67.76%) - LeetHub
1 parent be57210 commit 7b0ecde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

443-string-compression/443-string-compression.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Solution {
66
while(i<n){
77
int j = i+1;
88
while(j<n && chars[i] == chars[j]){
9-
j++;
9+
j+=1;
1010
}
1111

1212
// ya toh vector pura traverse krr diyaa

0 commit comments

Comments
 (0)