Count the number of unique characters in a given string. Ignore case when counting (so 'A' and 'a' are considered the same character). Return 0 for null or empty strings.
This challenge tests your understanding of Sets for tracking unique values and string manipulation for case-insensitive operations.
Examples:
Input: input = "hello"
Output: 4
Explanation: The unique characters are h, e, l, o (l appears twice but is only counted once)
Input: input = "Hello World"
Output: 8
Explanation: Case-insensitive unique characters are h, e, l, o, w, r, d, space (8 unique characters)
Input: input = "aaa"
Output: 1
Explanation: Only one unique character: a
Input: input = null
Output: 0
Explanation: Null input returns 0
Input: input = ""
Output: 0
Explanation: Empty string returns 0
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 accountHow 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
Contest Alert
🏆 #CodeEveryDay Feb 2026
Contest runs February 1 - 28. Complete challenges to climb the leaderboard!
Points are calculated for challenges completed during the contest period.