Word Pattern

easy
1. You will be given a pattern string and a words string 
 2. You need to check if the words follow the exact order as given in pattern string
 3. Return true if words follow the order, else false
 4. Input and output is handled for you
 5. It is a functional problem ,please do not modify main()

Input Format

Input is handled for you.

Output Format

Output is handled for you.

Constraints

Assume all characters in both strings are lowercase

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.

Example

Input
abab
pep coding pep coding
Output
true
Previous
The Skyline Problem
Next
Number Of Employees Under Every Manager

Related Questions