Daily challenge for 2026-01-03
368. Unique Character Frequency Count
Given a string s, return the number of characters that appear exactly once in the string. If the string is empty, return 0.
Example:Input: s = "aabbc" Output: 1
Run this challenge interactively in Python or JavaScript when the app loads.