Valid Anagram
๋ฌธ์
t์ s๊ฐ ์ฃผ์ด์ก์๋, s์ ์ํ๋ฒณ์ ์ฌ์กฐํฉํ๋ฉด t๋ฅผ ๊ตฌ์ฑํ ์ ์๋์ง ํ๋จํ๋ค. ์์) Example 1:
Input: s = โanagramโ, t = โnagaramโ
Output: true
Example 2:
Input: s = โratโ, t = โcarโ
Output: false
ํ์ด
class Solution:
def isAnagram(self, s: str, t: str) -> bool:
if len(s) == len(t):
s = [c for c in s]
t = [c for c in t]
while s:
if s[-1] in t:
t.pop(t.index(s[-1]))
s.pop()
else:
return False
return True
else:
return False
์๊ฒ๋ ์
- ๋ฌธ์์ด์ list์ง stack์ด ์๋๋ค. ๊ทธ๋ฌ๋๊น pop์ ์ธ์๋ ์๋ค.
Leave a comment