Word Pattern II 解答 Question Given apatternand a stringstr, find ifstrfollows the same pattern. Here follow means a full match, such that there is a bijection between a letter inpatternand a non-empty substring instr. Examples: pattern ="abab", str ="redblueredblue"should return true. ...