Back to course home
0% completed
Vote For New Content
Why didn't we use the same pattern as the island traversal pattern to this problem type?
shekhart91
Sep 18, 2024
Ideally, when we see a matrix, the first thought that comes after doing island traversal, is applying that pattern, why wasn't a solution added based on that pattern?
0
0
Comments
Comments
S
shekhart91 a year ago
I've noticed that there is hardly any reply from the author anymore, and not just for this solution. This wasn't the case before and it's truly disappointing to see a drop in platform's service quality.
Here is an advice : When you scale up your platform to include bo...
S
shripadtheneo a year ago
This is N*N matrix problem where nodes are same i == j. island traversal is bit different. Also this problem is not solved like graph would be like checking each next element in the matrix but simply by checking which edge exists. This is different way to solve the same...