Zip medium #tuple

by キリサメ qianxi @qianxi0410

Take the Challenge

In This Challenge, You should implement a type `Zip`, T and U must be `Tuple` ```ts type exp = Zip<[1, 2], [true, false]> // expected to be [[1, true], [2, false]] ```
Back Share your Solutions Check out Solutions