The link : https://leetcode.com/problems/permutation-in-string/ Permutation in String - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 요약 문자열 s2에 s1의 '조합'이 존재하는지 판단하세요. 예를 들어 다음과 다음과 같은 경우엔 s2에 s1이 존재합니다. 핵심 포인트 조합이라는 단어를 들으면 next_permutation 함수가 떠오르지만, 이 문제는 s1의 길이가 최대 10^4까지 ..