Posts by matheuslf • 111 points
1 post
- 
		1 votes2 answers3012 viewsA: How to go through the values of a Hashmap through a certain key?Friend, Your concept of Hashmap is wrong. You will need to change the data type (signature) of your Hashmap. HashMap<String, Integer[]> valores = new HashMap<String,Integer[]>(); After…