Question: Write a Java code including a method named check() which takes two strings as parameters and returns a boolean value based on whether both strings
Write a Java code including a method named check() which takes two strings as parameters and returns a boolean value based on whether both strings have same character pattern.
If both strings have the same length and if two characters in one string are the same only if the characters at the corresponding positions in the other string are also the same, we accept both strings have same pattern.
For example a-b true aa-bb true aa ba false check for words pattern
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
