Minimize String Length

EasyHash TableString

Solution

export function minimizedStringLength(s: string): number {
  return new Set(s).size;
}