blob: d7c10251b755bebe503c10c7902a0469f6236e8b [file] [log] [blame]
import java.util.*;
public class Maps1
{
public static Random rand = new Random(0);
public static void main(String[] args) {
HashMap map = new HashMap();
Maps.fillMapWithRandomInts(map);
Maps.printIntMap(map);
}
}