questions/00018-easy-tuple-length/README.ja.md
タプルTを受け取り、そのタプルの長さを返す型Length<T>を実装します。
例えば:
type tesla = ['tesla', 'model 3', 'model X', 'model Y']
type spaceX = ['FALCON 9', 'FALCON HEAVY', 'DRAGON', 'STARSHIP', 'HUMAN SPACEFLIGHT']
type teslaLength = Length<tesla> // expected 4
type spaceXLength = Length<spaceX> // expected 5
<a href="../../README.ja.md" target="_blank"></a> <a href="https://tsch.js.org/18/answer/ja" target="_blank"></a> <a href="https://tsch.js.org/18/solutions" target="_blank"></a> <!--info-footer-end-->