Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 1.87 KB

File metadata and controls

15 lines (10 loc) · 1.87 KB

Length of Tuple 쉬움 #tuple

by sinoon @sinoon

도전하기    English 简体中文 日本語

배열(튜플)을 받아 길이를 반환하는 제네릭 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

돌아가기 정답 공유하기 정답 보기