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]
-通过 / -执行
请实现Push<T, I>
。
type A = Push<[1,2,3], 4> // [2,3]type B = Push<[1], 2> // [1, 2]type C = Push<[], string> // [string]