[LeetCode] 290. Word Pattern - 문제풀이
Description 영어소문자로 이루어진 패턴(pattern)과 주어진 공백으로 구분된 문자열(s)이 패턴에 맞게 일정하게 이루어져 있는지 여부를 판단하는 문제입니다. Given a pattern and a string s, find if s follows the same pattern. Here follow means a full match, such that there is a bijection between a letter in pattern and a non-empty word in s. Example 1: Input: pattern = "abba", s = "dog cat cat dog" Output: true Example 2: Input: pattern = "abba", s = "dog c..