Take a string and return a Map<String, Integer> where each key is a character and each value is how many times that character appears. Ignore case (treat 'A' and 'a' as the same). Return an empty map for null or empty strings.

Examples:

Input: text = "hello" Output: {'h':1, 'e':1, 'l':2, 'o':1} Explanation: The character 'l' appears twice, all others appear once Input: text = "AaBb" Output: {'a':2, 'b':2} Explanation: Case insensitive, so 'A' and 'a' count as the same character Input: text = "hello world" Output: {'h':1, 'e':1, 'l':3, 'o':2, ' ':1, 'w':1, 'r':1, 'd':1} Explanation: All characters including spaces are counted Input: text = null Output: {} Explanation: Returns empty map for null input
Apex Code Editor

Welcome to Lightning Challenge!

Create an Account

Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.

Create account

How It Works

  • • Write your solution in the code editor
  • • Connect your Salesforce org to test
  • • Submit to check if your solution passes
  • • Use hints if you get stuck

Note

You can test your code by connecting to Salesforce, but to save your progress and earn points, you'll need to create an account. Your solutions and achievements will be tracked automatically once you're logged in.