Length of Tuple 初級 #tuple

by sinoon @sinoon

挑戦する    English 简体中文 한국어

タプル`T`を受け取り、そのタプルの長さを返す型`Length`を実装します。 例えば: ```ts type tesla = ['tesla', 'model 3', 'model X', 'model Y'] type spaceX = ['FALCON 9', 'FALCON HEAVY', 'DRAGON', 'STARSHIP', 'HUMAN SPACEFLIGHT'] type teslaLength = Length // expected 4 type spaceXLength = Length // expected 5 ```
戻る 解答を共有 解答を確認