:type s: str :type t: str :rtype: bool
(self, s, t)
| 35 | """ |
| 36 | class Solution(object): |
| 37 | def isAnagram(self, s, t): |
| 38 | """ |
| 39 | :type s: str |
| 40 | :type t: str |
| 41 | :rtype: bool |
| 42 | """ |
| 43 | if sorted(s) == sorted(t): |
| 44 | return True |
| 45 | return False |
| 46 |
nothing calls this directly
no outgoing calls
no test coverage detected