Thank you for making this video. Please do top 100 LeetCode problems from Meta. It would be helpful.
@rafaeljacobovitz4078Ай бұрын
Couldn’t you use a min heap where each node is a tuple, the first integer is column, the second the row and the last the number itself? That way as we bfs we can add the nodes to the heap and at the end we just spot out the nodes in the heap?
@shubhpatel_187 ай бұрын
Hi Michael, recently i have been thinking to make leetcode problem solving videos while practising but their terms of service might get violated i believe? can you put some light into this like do we need to mail them and take permission first ?
@easternb9058 ай бұрын
Hi, Michael. Can you just add one attribute 'Index' inside the Node class? Why not add a new attribute 'ind' inside the node class?
@philbowden8 ай бұрын
Hi Michael. As usual, a great video. I'm wondering about the Pair. Is there a version of Java that has this as part of the Collections library? Or, did you implement your own custom class for this?