Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 1.35 KB

File metadata and controls

12 lines (8 loc) · 1.35 KB

CheckRepeatedTuple medium

by bowen @jiaowoxiaobala

Take the Challenge    简体中文

Implement type CheckRepeatedChars<T> which will return whether type T contains duplicated member

For example:

type CheckRepeatedTuple<[1, 2, 3]>   // false
type CheckRepeatedTuple<[1, 2, 1]>   // true

Back Share your Solutions Check out Solutions