题解 - Easy3057 - PushOn this page3057 - PushAnswer TestCases在类型系统里实现通用的 Array.push 。例如:type Result = Push<[1, 2], '3'> // [1, 2, '3']Solutiontype Push<T extends unknown[], U> = [...T, U]