For example I have this:
{[dificultad, adios]=["baja", "a"],
[dificultad, adios]=["baja", "a"],
[dificultad, adios]=["alta", "abckdk"]}
that is, a Map<List<String>, List<String>>
, what I want to do and I can't do is, for example, if in the map, if there are identical keys and values that are deleted and there is only one element of them.
Expected output:
{[dificultad, adios]=["baja", "a"], [dificultad, adios]=["alta", "abckdk"]}