You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This java translation follows the python solution as closely as possible. There are 2 changes which have been made to make the python solution work in java. The first change is that the class RecursiveBiFunction is defined. This class exists so that the dfs lambda expression may refer to itself. The second change is that the visit set contains flattened integer coordinates instead of tuples. This change is made because tuples do not exist in java, and using an int array would not provide the correct behavior as int arrays compare themselves by not by value, but by reference.
0 commit comments