Word Pattern

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 cat cat fish"
Output: false

Example 3:

Input: pattern = "aaaa", s = "dog cat cat dog"
Output: false

Example 4:

Input: pattern = "abba", s = "dog dog dog dog"
Output: false

 

Constraints:

  • 1 <= pattern.length <= 300
  • pattern contains only lower-case English letters.
  • 1 <= s.length <= 3000
  • s contains only lower-case English letters and spaces ' '.
  • s does not contain any leading or trailing spaces.
  • All the words in s are separated by a single space.
 

class Solution {
    public boolean wordPattern(String pattern, String s) {
        HashMap index = new HashMap();
        String[] words = s.split(" ");

        if (words.length != pattern.length())
            return false;

        for (Integer i = 0; i < words.length; i++) {
            char c = pattern.charAt(i);
            String w = words[i];

            if (!index.containsKey(c))
                index.put(c, i);

            if (!index.containsKey(w))
                index.put(w, i);

            if (index.get(c) != index.get(w))
                return false;
        }

        return true;
    }
}

Try it on Leetcode 

Here, we are going to solve using Hashmap which stores both pattern and words as key and those indexes as value.

1) If words and pattern length are different, return false.

2) Store each character and words into index map, with its indexes as value. If keys are already present no need to update.

3) If values(i.e., index) of both pattern and  word are different, then return false. Using this, we can easily find an irregular pattern.

4) If entire loop completes, return true.

Related Post:

Click here for April month challenges with solution and explanation

Click Follow button to receive latest updates from us instantly.

Please let us know about your views in comment section.

Like us? Help us to grow...

Help Others, Please Share..!!!!

                                                     😍..Happy Coding...😍

Comments

Popular posts from this blog

Balanced Binary Tree

First Unique Character in a String

Majority Element

Smallest Range II