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!
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
Contest Alert
🏆 #CodeEveryDay July 2026
Contest runs July 1 - 31. Complete challenges to climb the leaderboard!
Only the 31 daily challenges shown during this contest count toward points. Earlier dailies don't carry over.