Type Challenges Judge
Problems
Progress
Zip
In This Challenge, You should implement a type Zip<T, U>, T and U must be Tuple
Zip<T, U>
Tuple
type exp = Zip<[1, 2], [true, false]> // expected to be [[1, true], [2, false]]