Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 1.19 KB

File metadata and controls

9 lines (6 loc) · 1.19 KB

Zip medium #tuple

by キリサメ qianxi @qianxi0410

Take the Challenge

In This Challenge, You should implement a type Zip<T, U>, T and U must be Tuple

type exp = Zip<[1, 2], [true, false]> // expected to be [[1, true], [2, false]]

Back Share your Solutions Check out Solutions