hashmap declaration in java code example
Example 1: declare hashmap java
//remember to first import java.util.*; first
//you can swap out string or integer for other data types
Map<String, Integer> d = new HashMap<>();
Example 2: how to create a hashmap in java
HashMap<Integer,String> map=new HashMap<Integer,String>();//key is integer, value is String