Update appNew update is available. Click here to update.

Ninja's Gift

Contributed by
Vivek Kumar Mehta
Last Updated: 23 Feb, 2023
Hard
yellow-spark
0/120
Avg time to solve 45 mins
Success Rate 55 %
Share
3 upvotes

Problem Statement

Ninja is going to visit her friend Mico. He is thinking to gift her a string. But he came to know that Mico only likes the string 'S'. Ninja already has a string 'K'. Now, Ninja can change the string 'K' in some other string by choosing any character in one move and change all its occurrence with any other lowercase English character. He can do this several times.

Help Ninja to find if he can change his string 'K' to string 'S', which Mico likes.

Note:
Both 'S' and 'K' contain only lowercase English characters.
For Example:
K = "aabb" and S = "bbcc"
Now Ninja can do the following changes:
- Change ‘b’ to ‘c’ -> “aacc”
- Change ‘a’ to ‘b’ -> “bbcc”

Hence Ninja can give Mico the desired gift.
Detailed explanation ( Input/output format, Notes, Images )
Constraints:
1 <= T <= 5
1 <= |K|, |S| <= 10^5

Time Limit: 1 second
Sample Input 1:
2
aabcc
ccdaa
ninjas
coding
Sample Output 1:
True
False
Explanation For Sample Output 1:
Test case 1:

Here K=ccdaa and S=aabcc. Here we can change K into S by following conversions

Change ‘d’ to ‘b’ -> ccbaa

Change ‘a’ to ‘e’ -> ccbee

Change ‘c’ to ‘a’ -> aabee

Change ‘e’ to ‘c’-> aabcc

Test case 2:

It is not possible to change K to S by any number of conversions.
Sample Input 2
2
code
dope
acbz
acbza
Sample Output 2
True
False
Reset Code
Full screen
Auto
copy-code
Console