https://leetcode.com/problems/substring-with-concatenation-of-all-words/description Q. 문자열 s와 단어 배열 words가 주어질 때, words를 조합해서 구성할 수 있는 문자열이 s에 존재하면, 그 시작 위치 index를 반환하라. Solution. 우선 문자열을 확인 할 frequency buffer가 hash type으로 필요하다. 그리고 sub string을 left to right 로 sliding 해 가면서 check 한다. 도중에 실패하면, 바로 다음 위치에서 시작한다. 성공한 문자를 찾아도 시작지점 바로 다음 위치에서 시작한다. 로직을 코드로 작성한다.더보기bool IsStartWith(string s, i..