Skip to content

Commit 6693c07

Browse files
committed
fix: 린트 오류 해결을 위한 개행 추가
1 parent 2ef062c commit 6693c07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

valid-anagram/dusunax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ def isAnagramA(self, s: str, t: str) -> bool:
4141
return True
4242

4343
def isAnagramB(self, s: str, t: str) -> bool:
44-
return Counter(s) == Counter(t) # TC: O(n), SC: O(n)
44+
return Counter(s) == Counter(t) # TC: O(n), SC: O(n)

0 commit comments

Comments
 (0)