面试题答案一键面试function combine(str: string, ...nums: number[]): number[] { return nums.map(num => num * str.length); }