| ش | ی | د | س | چ | پ | ج |
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Regarding HashMaps:
https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html
import java.util.HashMap;
HashMap<String, String> userMap = new HashMap<String, String>();
https://docs.oracle.com/javase/tutorial/collections/interfaces/map.html
clear, containsKey, containsValue,isEmpty, keySet, remove, replace, size, values. Try these out to see what you can do with HashMaps.