HTMLify
Home
Log in
Register
Dashboard
Frames
API
LeetCode - Valid Anagram - Python
Views: 4 | Author:
abh
class
Solution
:
def
isAnagram
(
self
,
s
:
str
,
t
:
str
)
->
bool
:
return
sorted
(
s
)
==
sorted
(
t
)
Share this file:
Copy
Short Link
View Raw
Download File
(104 B)
Embed Code
Clone
Comments
Comment