Valid Anagram
easy
1. You are given two strings s1 and s2. 2. You have to determine if s2 is an anagram of s1.
Constraints
1 <= length of string <= 10^5
Format
Input
Two strings s1 and s2
Output
true/false
Example
Sample Input
pepcoding
codingpep
Sample Output
true
Question Video