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