Solve additional Matrix problems

Looks like "Rotate Image" is the only Matrix problem that remains. It was nice
to learn more about "Backtracking" -- a term I often encounter -- while
attempting to solve "Word Search".

From my current understanding, it is like Brute Force but with
short-circuiting. It also seems quite similar to Depth First Search, and I'm
currently unaware of how DFS and Backtracking differ. I'm hoping to learn more
though.
This commit is contained in:
William Carroll 2020-12-22 03:03:11 +00:00
parent 983b0fb276
commit 23b5dd754e

View file

@ -96,13 +96,13 @@
** DONE Reorder List
https://leetcode.com/problems/reorder-list/
* Matrix
** TODO Set Matrix Zeroes
** DONE Set Matrix Zeroes
https://leetcode.com/problems/set-matrix-zeroes/
** TODO Spiral Matrix
** DONE Spiral Matrix
https://leetcode.com/problems/spiral-matrix/
** TODO Rotate Image
https://leetcode.com/problems/rotate-image/
** TODO Word Search
** DONE Word Search
https://leetcode.com/problems/word-search/
* String
** TODO Longest Substring Without Repeating Characters