Java tutorial
//package com.java2s; import java.util.HashMap; public class Main { public static void putRepostByDay(HashMap<String, Integer> reposttimelinebyDay, String date) { if (reposttimelinebyDay.get(date) == null) { reposttimelinebyDay.put(date, 1); } else { reposttimelinebyDay.put(date, reposttimelinebyDay.get(date) + 1); } } }