type-challenges/questions/18-easy-tuple-length
2020-07-31 17:50:09 +08:00
..
2020-07-31 17:50:09 +08:00

Length of Tuple easy #tuple

by sinoon @sinoon

Take the Challenge

For given a tuple, you need create a generic Length, pick the length of the tuple

For example

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

Back Share your Solutions Check out Solutions