Skip to content
Advertisement

How do I check if two simple 2D arrays have the same 1D arrays? (order and repetitions doesn’t matter)

My main objective is to return if all elements, int[ ], of a 2D Array ,int[ ][ ], are present in another 2D Array.

I already tried to use Arrays.deepEquals() but in this case, the order of the elements would matter and that’s not the purpose.

  • Int[ ][ ] arrays wouldn’t be longer than 15, for example.
  • Int[ ][ ] arrays have always the same length.
  • Int[ ][ ] arrays order doesn’t matter, but Int[ ] arrays does.
  • Int[ ] arrays would always be a pair.

Expected:

JavaScript

This is my solution/try:

JavaScript

EDIT: I solved the problem reversing the logic of the solution. Posted own answer.

Advertisement

Answer

You can use IntBuffer which can wrap an int[] array and provide the equals and hashCode implementations reflecting the array’s content.

JavaScript

This is simple and runs in linear time, hence, can cope with large arrays. It has the expected result for your test case.

JavaScript

But it does not consider duplicates. If the number of occurrences must match for sub arrays with the same contents, you have to expand the solution to use a map to count the occurrences.

JavaScript

Since your example has no duplicates, it still has the same result.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement