문제 링크
요약
- ??? 뭐지
최종
결과
- ㅋㅋㅋ
class Solution {
public:
int strStr(string haystack, string needle) {
return haystack.find(needle);
}
};문제 링크
요약
- ??? 뭐지
결과
class Solution {
public:
int strStr(string haystack, string needle) {
return haystack.find(needle);
}
};