Given two strings,write a method to decide if one is a permutation of the other.
Example 1:
Input: s1 = "abc", s2 = "bca" Output: true
s1
s2
Example 2:
Input: s1 = "abc", s2 = "bad" Output: false
Note:
0 <= len(s1) <= 100
0 <= len(s2) <= 100