33. implement TupleToString<T>

  - accepted / - tried

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<[]> // ''

Let's try to solve this problem within 10 minutes.

(26)