Live Lecture:Longest Increasing Path

In this video we will solve LeetCode 329. We define an algorithm that does a depth first search starting from each node, before adding a memoisation step to improve the performance of our otherwise slow solution.

Find the code here: Leetcode 329