31. implement Push<T, I>

  -通过 / -执行

请实现Push<T, I>

type A = Push<[1,2,3], 4> // [2,3]
type B = Push<[1], 2> // [1, 2]
type C = Push<[], string> // [string]

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

(16)