We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ef062c commit 6693c07Copy full SHA for 6693c07
valid-anagram/dusunax.py
@@ -41,4 +41,4 @@ def isAnagramA(self, s: str, t: str) -> bool:
41
return True
42
43
def isAnagramB(self, s: str, t: str) -> bool:
44
- return Counter(s) == Counter(t) # TC: O(n), SC: O(n)
+ return Counter(s) == Counter(t) # TC: O(n), SC: O(n)
0 commit comments