How can i check double array for uniqueness?

nikolay

For example we have

String [][] doubleArray = {{"a","1"},{"b","3"},{"a","1"},{"c","1"}};.

How can i create a new array with only uniqueness subarrays :

{{"a","1"},{"b","3"},{"c","1"}}

What i tryed :

Set <String []> uniq = new HashSet<String []>(Arrays.asList(doubleArray));

But Java doesnt see the difference between {"a","1"} and {"a","1"} , so uniq returns me set of all subarrays of doubleArray, including clones.

Bahramdun Adil

You can use Map like this:

String [][] doubleArray = {{"a","1"},{"b","3"},{"a","1"},{"c","1"}};
Map<String, String> map = new HashMap<>();
for (String[] strings : doubleArray) {
    map.put(strings[0], strings[1]);
}
System.out.println("map = " + map);

The result:

map = {a=1, b=3, c=1}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Check uniqueness for array of objects

From Dev

How to check double *array?

From Dev

PHP : How can I check Array in array?

From Dev

How can I save [Double] array into Realm?

From Dev

Hashcode to check uniqueness in a string array

From Dev

How can I check that no letters are entered in the array?

From Dev

How can I check for a value in a conditional array?

From Dev

How can I check that two array are equal or not?

From Dev

How can I check in chai an array + type?

From Dev

How can I check if std::pow will overflow double

From Dev

How can I auto-generate complex identifiers and ensure uniqueness?

From Dev

How can I determine uniqueness of each line after a certain character?

From Dev

How can I specify uniqueness on multiple field in mongo, NOT combined?

From Dev

How can I auto-generate complex identifiers and ensure uniqueness?

From Dev

How can I unit test uniqueness of a Randomly Generated UserID

From Dev

How can I determine uniqueness of each line after a certain character?

From Dev

Check For Uniqueness in Array, Push To Array if Unique

From Dev

How can I check if javascript array already contains a specific array

From Dev

How can I check an array with a list of array values?

From Dev

How can I convert a byte array to a double in python?

From Dev

How can I initialize a Mat from double array?

From Dev

How can I change items inside a double array?

From Dev

How can I use JPEG as Double Array of pixels?

From Dev

How can I get type double array from List<string>?

From Dev

In ElasticSearch how can I check if the values in an array match

From Dev

How can I check if multiple array keys exist?

From Dev

How can I check if given int exists in array?

From Java

How can I check if the array of objects have duplicate property values?

From Dev

How can I write a template to check if a given value is in an array

Related Related

  1. 1

    Check uniqueness for array of objects

  2. 2

    How to check double *array?

  3. 3

    PHP : How can I check Array in array?

  4. 4

    How can I save [Double] array into Realm?

  5. 5

    Hashcode to check uniqueness in a string array

  6. 6

    How can I check that no letters are entered in the array?

  7. 7

    How can I check for a value in a conditional array?

  8. 8

    How can I check that two array are equal or not?

  9. 9

    How can I check in chai an array + type?

  10. 10

    How can I check if std::pow will overflow double

  11. 11

    How can I auto-generate complex identifiers and ensure uniqueness?

  12. 12

    How can I determine uniqueness of each line after a certain character?

  13. 13

    How can I specify uniqueness on multiple field in mongo, NOT combined?

  14. 14

    How can I auto-generate complex identifiers and ensure uniqueness?

  15. 15

    How can I unit test uniqueness of a Randomly Generated UserID

  16. 16

    How can I determine uniqueness of each line after a certain character?

  17. 17

    Check For Uniqueness in Array, Push To Array if Unique

  18. 18

    How can I check if javascript array already contains a specific array

  19. 19

    How can I check an array with a list of array values?

  20. 20

    How can I convert a byte array to a double in python?

  21. 21

    How can I initialize a Mat from double array?

  22. 22

    How can I change items inside a double array?

  23. 23

    How can I use JPEG as Double Array of pixels?

  24. 24

    How can I get type double array from List<string>?

  25. 25

    In ElasticSearch how can I check if the values in an array match

  26. 26

    How can I check if multiple array keys exist?

  27. 27

    How can I check if given int exists in array?

  28. 28

    How can I check if the array of objects have duplicate property values?

  29. 29

    How can I write a template to check if a given value is in an array

HotTag

Archive