CheckRepeatedChars by Hong @RThong Implement type CheckRepeatedChars<S> which will return whether type S contains duplicated chars? For example: type CheckRepeatedChars<'abc'> // false type CheckRepeatedChars<'aba'> // true