Skip to content

Commit 71a2085

Browse files
committed
Time: 32 ms (79.08%), Space: 49.9 MB (63.74%) - LeetHub
1 parent fc4b88e commit 71a2085

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Solution {
2+
public String removeDuplicates(String s) {
3+
StringBuilder sb = new StringBuilder();
4+
for (char ch: s.toCharArray()) {
5+
if ( sb.length() != 0 && sb.charAt(sb.length() - 1) == ch ) {
6+
sb.deleteCharAt(sb.length() - 1);
7+
} else {
8+
sb.append(ch);
9+
}
10+
}
11+
return sb.toString();
12+
}
13+
}

0 commit comments

Comments
 (0)