https://leetcode.com/problems/ransom-note/description/?envType=study-plan-v2&envId=top-interview-150
hash = {}
for( c in magazine)
if c in hash:
hash[c] = hash[c] +1
else:
hash[c] = 1
for ( c in ransomeNote )
if hash[c]==0 or hash[c] == null:
return false
return ture
매우 쉬운 문제고 , 그렇게 풀었는데
Runtime 과 Memory 가 매우 낮은걸 보고 다른 코드들을 살펴봤는데
나의 방법과 똑같은 원리이나 파이선에서 자동으로 개수를 Count 해주는 Counter 라는 Function을 발견하였다.
그래서 , 해당 함수를 사용하여 제출을 해보니 아래와 같이 결과가 나왔다.
이렇게 , 자신이 사용할 유용한 라이브러리나 함수를 기억하는 것도 코테 준비하는 것에 큰 도움이 될 거 같다고 생각했다.