문제 링크

요약

  • ??? 뭐지

최종

  • ㅋㅋㅋ
class Solution {
public:
	int strStr(string haystack, string needle) {
		return haystack.find(needle);
	}
};