Anagram

4.7

3 votes
Easy-Medium, Easy-Medium
Problem

Given two strings, check whether two given strings are anagram of each other or not. An anagram of a string is another string that contains same characters, only the order of characters can be different. For example, “act” and “tac” are anagram of each other.

Input:

The first line of input contains an integer T denoting the number of test cases. Each test case consist of two strings in 'lowercase' only, in a separate line.

Output:

Print "YES" without quotes if the two strings are anagram else print "NO".

Constraints: 1 ≤ T ≤ 30 1 ≤ |s| ≤ 100

Example:

Input: 2 geeksforgeeks forgeeksgeeks allergy allergic

Output: YES NO

Sample Input
2
geeksforgeeks
forgeeksgeeks
allergy
allergic
Sample Output
YES 
NO
Time Limit: 1
Memory Limit: 256
Source Limit:
Contributers:
Editor Image

?