leetcode 745 Prefix and Suffix Search
摘要:
```javascript var WordFilter = function (words) { this.trie = {}, idx = 0; for (let word of words) { let m = word.length; let paths = []; for (let i = 阅读全文
posted @ 2019-12-29 22:45 司徒正美 阅读(467) 评论(0) 推荐(0) 编辑