Sainnhe Park
955655bb0f
All checks were successful
continuous-integration/drone/push Build is passing
15 lines
186 B
C++
15 lines
186 B
C++
#ifndef S0020_VALID_PARENTHESES
|
|
#define S0020_VALID_PARENTHESES
|
|
|
|
#include <stack>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
class Solution {
|
|
public:
|
|
bool isValid(string s);
|
|
};
|
|
|
|
#endif
|