leetle

Daily challenge for 2026-02-23

419. Unique Character Frequency Balance

Given a string s, determine if all characters that appear in the string have the same frequency. Return true if all characters occur the same number of times, and false otherwise.

Example:
Input: s = "abacbc" Output: true (a, b, and c all appear twice).

Run this challenge interactively in Python or JavaScript when the app loads.