Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 1.46 KB

File metadata and controls

13 lines (8 loc) · 1.46 KB

CheckRepeatedChars medium #union #string

by Hong @RThong

Take the Challenge    简体中文

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

For example:

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

Back Share your Solutions Check out Solutions