Posts by Gonçalo Coelho • 1 point
2 posts
-
0
votes1
answer30
viewsA: How can I identify if 2 Hashmaps have Objects with Common Ids
Problem solved. for (HashMap<String, String> cartaInventario : listaCartasInventario) { cartasInventario.add(cartaInventario.get(Config.TAG_ID_CARTA_INVENTARIO)); for (HashMap<String,…
-
0
votes1
answer30
viewsQ: How can I identify if 2 Hashmaps have Objects with Common Ids
Right now I’m playing a card game, in which each Player has an inventory of his Cards. I am now trying to create a Deck and my goal is to make the Cards that are already in the Deck not appear on…