package
0.0.0-20241125063422-a7e1e0bf04b0
Repository: https://github.com/blueblue0102/leetcode-go.git
Documentation: pkg.go.dev

# README

383. Ransom Note

https://leetcode.com/problems/ransom-note/

直覺的做法可能是分別對這兩個字串建立 hash table,然後再比較數字的大小
但其實只需要建立一個 hash table 即可

Takeaway