CheckRepeatedChars medium #union #string

by Hong @RThong

Take the Challenge    简体中文

Implement type ```CheckRepeatedChars``` which will return whether type ```S``` contains duplicated chars? For example: ```ts type CheckRepeatedChars<'abc'> // false type CheckRepeatedChars<'aba'> // true ```
Back Share your Solutions Check out Solutions