Skip to content

Latest commit

 

History

History

00459-medium-flatten

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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:

type flatten = Flatten<[1, 2, [3, 4], [[[5]]]]> // [1, 2, 3, 4, 5]

Back Share your Solutions Check out Solutions