-
Notifications
You must be signed in to change notification settings - Fork 0
/
533-concat.ts
38 lines (28 loc) · 1.12 KB
/
533-concat.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
533 - Concat
-------
by Andrey Krasovsky (@bre30kra69cs) #简单 #array
### 题目
在类型系统里实现 JavaScript 内置的 `Array.concat` 方法,这个类型接受两个参数,返回的新数组类型应该按照输入参数从左到右的顺序合并为一个新的数组。
例如:
```ts
type Result = Concat<[1], [2]> // expected to be [1, 2]
```
> 在 Github 上查看:https://tsch.js.org/533/zh-CN
*/
/* _____________ 你的代码 _____________ */
type Concat<T extends unknown[], U extends unknown[]> = [...T, ...U];
/* _____________ 测试用例 _____________ */
import type { Equal, Expect } from '@type-challenges/utils'
type cases = [
Expect<Equal<Concat<[], []>, []>>,
Expect<Equal<Concat<[], [1]>, [1]>>,
Expect<Equal<Concat<[1, 2], [3, 4]>, [1, 2, 3, 4]>>,
Expect<Equal<Concat<['1', 2, '3'], [false, boolean, '4']>, ['1', 2, '3', false, boolean, '4']>>,
]
/* _____________ 下一步 _____________ */
/*
> 分享你的解答:https://tsch.js.org/533/answer/zh-CN
> 查看解答:https://tsch.js.org/533/solutions
> 更多题目:https://tsch.js.org/zh-CN
*/