242. Valid Anagram
https://leetcode.com/problems/valid-anagram Valid Anagram - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 난이도 : easy 문제 t가 s의 애너그램인지를 판별하라 두가지로 풀이 했다. 1. s와 t 를 정렬을 해서 같은이 아닌지 판단한다. 이때 시간복잡도는 최소 O(NlogN) 이다. 제약사항에서 문자열의 최대 길이는 5 * 10^4 1
Developer/LEETCODE
2021. 9. 4. 11:35