Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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);
        }
    }
}