33. implement TupleToString<T>

  -通过 / -执行

Implement TupleToString<T> to return a new type by concatenating all the string to a new string type.

type A = TupleToString<['a']> // 'a'
type B = TupleToString<['B', 'F', 'E']> // 'BFE'
type C = TupleToString<[]> // ''

争取10分钟以内搞定这个问题

(26)