Skip to content

Commit 0f72bcd

Browse files
authored
Update minimum-remove-to-make-valid-parentheses.cpp
1 parent 2650324 commit 0f72bcd

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

C++/minimum-remove-to-make-valid-parentheses.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
class Solution {
55
public:
66
string minRemoveToMakeValid(string s) {
7-
unordered_set<int> lookup;
87
int count = 0;
98
for (auto i = 0; i < s.size(); ++i) {
109
if (s[i] == '(') {

0 commit comments

Comments
 (0)