32. implement RepeatString<T, C>

  -通过 / -执行

类似于String.prototype.repeat(),请实现RepeatString<T, C>

type A = RepeatString<'a', 3> // 'aaa'
type B = RepeatString<'a', 0> // ''

C为负的情况可以忽略。

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

(21)