leetle

Daily challenge for 2026-01-18

383. Unique Character Frequency Check

Given a string s, determine if all characters in the string appear the same number of times. Return true if the frequencies are uniform, otherwise return false. An empty string should return true.

Example:
Input: s = "aabb" Output: true

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