mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 10:34:07 +00:00
9 lines
168 B
C++
9 lines
168 B
C++
#include <string>
|
|
|
|
using namespace std;
|
|
class Solution
|
|
{
|
|
public:
|
|
int strStr(string haystack, string needle);
|
|
bool test(string haystack, string needle, int answer);
|
|
}; |