CheckRepeatedChars

Medium
0.0% Acceptance

Implement type CheckRepeatedChars<S> which will return whether type S contains duplicated chars?

For example:

type CheckRepeatedChars<'abc'> // false type CheckRepeatedChars<'aba'> // true