📜  计数 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:15.433000             🧑  作者: Mango

代码示例1
//Calculate the times a character occurs
    public static int charCount(String userInput) {
        
        //convert the string to a char array
        char[] StringArray = userInput.toCharArray();
        
        //hashmap that stores the characters. key will be the time it occures
        HashMapcharCount = new HashMap();