Pop
提出詳細
type Pop<T extends any[]> = T extends [...infer L, infer R] ? L : []
提出日時 | 2023-08-07 17:19:05 |
---|---|
問題 | Pop |
ユーザー | ookkoouu |
ステータス | Accepted |
import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect<Equal<Pop<[3, 2, 1]>, [3, 2]>>, Expect<Equal<Pop<['a', 'b', 'c', 'd' ]>, ['a', 'b', 'c']>>, ]