1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/cs/valid-parenthesis-string.cs

27 lines
570 B
C#
Raw Normal View History

public class Solution {
public bool CheckValidString(string s) {
int left = 0;
int right = 0;
for (int i = 0, j = s.Length - 1; i < s.Length; ++i, --j) {
if (s[i] == '(' || s[i] == '*') {
++left;
} else {
--left;
}
if (s[j] == ')' || s[j] == '*') {
++right;
} else {
--right;
}
if (left < 0 || right < 0) {
return false;
}
}
return true;
}
}