Georgi_Benchev

Untitled

Dec 3rd, 2024
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.24 KB | None | 0 0
  1. package set_and_Map.CodingTasks_2;
  2.  
  3. import java.util.HashMap;
  4. import java.util.Map;
  5. import java.util.Scanner;
  6.  
  7. public class Just_Count {
  8.     public static void main(String[] args) {
  9.         Scanner scanner = new Scanner(System.in);
  10.  
  11.         char[] input = scanner.nextLine().toCharArray();
  12.  
  13.         Map<Character, Integer> specialSymbols = new HashMap<>();
  14.         Map<Character, Integer> lowerCharacters = new HashMap<>();
  15.         Map<Character, Integer> upperCharacters = new HashMap<>();
  16.  
  17.         for (char ch : input) {
  18.             if (ch >= 97 && ch <= 122) {  // a-z
  19.                 if (!lowerCharacters.containsKey(ch)) {
  20.                     lowerCharacters.put(ch, 1);
  21.                 } else {
  22.                     lowerCharacters.put(ch, lowerCharacters.get(ch) + 1);
  23.                 }
  24.             } else if (ch >= 65 && ch <= 90) {  // A-Z
  25.                 if (!upperCharacters.containsKey(ch)) {
  26.                     upperCharacters.put(ch, 1);
  27.                 } else {
  28.                     upperCharacters.put(ch, upperCharacters.get(ch) + 1);
  29.                 }
  30.             } else { // &^%$$&^
  31.                 if (!specialSymbols.containsKey(ch)) {
  32.                     specialSymbols.put(ch, 1);
  33.                 } else {
  34.                     specialSymbols.put(ch, specialSymbols.get(ch) + 1);
  35.                 }
  36.             }
  37.         }
  38.  
  39.  
  40.         getBiggestCharCount(specialSymbols);
  41.         getBiggestCharCount(lowerCharacters);
  42.         getBiggestCharCount(upperCharacters);
  43.  
  44.  
  45.     }
  46.  
  47.     private static void getBiggestCharCount(Map<Character, Integer> mapToWorkWith) {
  48.         Character biggestChar = ' ';
  49.         Integer maxValue = 0;
  50.         for (Map.Entry<Character, Integer> entry : mapToWorkWith.entrySet()) {
  51.             if (maxValue < entry.getValue()) {
  52.                 biggestChar = entry.getKey();
  53.                 maxValue = entry.getValue();
  54.             } else if (maxValue == entry.getValue() && biggestChar > entry.getKey()) {
  55.                 biggestChar = entry.getKey();
  56.                 maxValue = entry.getValue();
  57.             }
  58.         }
  59.         if (maxValue == 0) {
  60.             System.out.println("-");
  61.         } else {
  62.             System.out.println(biggestChar + " " + maxValue);
  63.         }
  64.  
  65.     }
  66. }
  67.  
Add Comment
Please, Sign In to add comment