Flatten medium #array

by zhouyiming @chbro

Take the Challenge    简体中文 日本語 한국어

In this challenge, you would need to write a type that takes an array and emitted the flatten array type. For example: ```ts type flatten = Flatten<[1, 2, [3, 4], [[[5]]]]> // [1, 2, 3, 4, 5] ```
Back Share your Solutions Check out Solutions