Type Challenges Judge

Construct Tuple

提出詳細

type ConstructTuple<L extends number, A extends unknown[] = []> = A["length"] extends L ? A : ConstructTuple<L, [...A, unknown]>
提出日時2023-08-31 16:41:37
問題Construct Tuple
ユーザーookkoouu
ステータスAccepted
テストケース
import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect<Equal<ConstructTuple<0>, []>>, Expect<Equal<ConstructTuple<2>, [unknown, unknown]>>, Expect<Equal<ConstructTuple<999>['length'], 999>>, // @ts-expect-error Expect<Equal<ConstructTuple<1000>['length'], 1000>>, ]