Coding Test/알고리즘 이론

[LeetCode] Leetcode 75 Questions (NeetCode on yt)

hyunkookim 2024. 11. 10. 14:40

Leetcode 75 질문 유형 및 유투브 솔루션 링크 정리

 

https://docs.google.com/spreadsheets/d/1BiY_cRfXI9yJPaU75RFcfVRN2OF1CilpiwX5cdHXRoU/edit?usp=sharing

 

 

김현구: Leetcode 75 Questions (NeetCode on yt)

trick: I though use trie to store the grid, reverse thinking, instead store dictionary words, dfs on each cell, check if cell's char exists as child of root node in trie, if it does, update currNode, and check neighbors, a word could exist multiple times i

docs.google.com

 

Leetcode 답안 코드

 

https://github.com/neetcode-gh/leetcode/tree/main/python