questions/00018-easy-tuple-length/README.ko.md
배열(튜플)을 받아 길이를 반환하는 제네릭 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.ko.md" target="_blank"></a> <a href="https://tsch.js.org/18/answer/ko" target="_blank"></a> <a href="https://tsch.js.org/18/solutions" target="_blank"></a> <!--info-footer-end-->